-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "aiscript-version-transpiler",
"version": "0.1.0",
"description": "A transpiler to convert AiScript code into a newer version",
"type": "module",
"exports": {
".": {
"import": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prebuild": "peggy --format es --cache -o src/aiscript/parser.js --dts --allowed-start-rules Preprocess,PartialExpr src/aiscript/parser.peggy && copyfiles -u 1 src/**/*.{d.ts,js} dist",
"test": "vitest run"
},
"author": "Take-John <takejohn@takejohn.jp> (https://takejohn.jp/)",
"license": "MIT",
"packageManager": "pnpm@10.15.1",
"dependencies": {
"aiscript.0.19.0": "npm:@syuilo/aiscript@0.19.0",
"aiscript.1.1.0": "npm:@syuilo/aiscript@1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@vitest/coverage-v8": "3.2.4",
"copyfiles": "^2.4.1",
"eslint": "^9.34.0",
"peggy": "^5.0.6",
"ts-dedent": "^2.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
}
}