-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (60 loc) · 1.67 KB
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
57
58
59
60
{
"type": "module",
"name": "@syuilo/aiscript",
"version": "1.3.0",
"description": "AiScript implementation",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/syuilo/aiscript.git"
},
"homepage": "https://aiscript-dev.github.io/",
"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",
"repl": "node ./scripts/repl.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.32.0",
"@microsoft/api-extractor": "7.52.10",
"@types/node": "24.2.0",
"@types/seedrandom": "3.0.8",
"@vitest/coverage-v8": "3.2.4",
"chalk": "5.5.0",
"eslint": "9.32.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-unused-imports": "4.2.0",
"semver": "7.7.2",
"ts-node": "10.9.2",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0",
"vitest": "3.2.4"
},
"dependencies": {
"seedrandom": "3.0.5",
"stringz": "2.1.0",
"uuid": "11.1.0"
}
}