-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
56 lines (56 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"type": "module",
"name": "@syuilo/aiscript",
"version": "1.0.0",
"description": "AiScript implementation",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"license": "MIT",
"repository": "https://github.com/syuilo/aiscript.git",
"bugs": "https://github.com/syuilo/aiscript/issues",
"exports": {
".": {
"import": "./built/esm/index.js",
"types": "./built/dts/index.d.ts"
},
"./*": {
"import": "./built/esm/*",
"types": "./built/dts/*"
}
},
"scripts": {
"start": "node ./scripts/start.mjs",
"parse": "node ./scripts/parse.mjs",
"ts": "npm run ts-esm && npm run ts-dts",
"ts-esm": "tsc --outDir built/esm",
"ts-dts": "tsc --outDir built/dts --declaration true --emitDeclarationOnly true --declarationMap true",
"build": "node scripts/gen-pkg-ts.mjs && npm run ts",
"api": "npx api-extractor run --local --verbose",
"api-prod": "npx api-extractor run --verbose",
"lint": "eslint .",
"test": "vitest run",
"pre-release": "node scripts/pre-release.mjs && npm run build",
"prepublishOnly": "node scripts/check-release.mjs"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@microsoft/api-extractor": "7.47.11",
"@types/eslint__js": "8.42.3",
"@types/node": "22.7.9",
"@types/seedrandom": "3.0.8",
"@types/uuid": "10.0.0",
"@vitest/coverage-v8": "2.1.3",
"chalk": "5.3.0",
"eslint": "9.13.0",
"eslint-plugin-import": "2.31.0",
"semver": "7.6.3",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0",
"vitest": "2.1.3"
},
"dependencies": {
"seedrandom": "3.0.5",
"stringz": "2.1.0",
"uuid": "10.0.0"
}
}