-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 926 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 926 Bytes
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
{
"name": "fdnext",
"private": true,
"version": "0.1.0",
"description": "FlashDetector TypeScript Next",
"license": "AGPL-3.0-or-later",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "pnpm -r --if-present build",
"test": "pnpm -r --if-present test",
"lint": "pnpm -r --if-present lint",
"typecheck": "pnpm -r --if-present typecheck",
"fdbgen:build": "pnpm -C packages/fdbgen build",
"fdbgen:generate": "pnpm -s tsx ./packages/fdbgen/src/cli.ts build",
"fdbgen:crawl-mdb": "pnpm -s tsx ./packages/fdbgen/src/cli.ts crawl-mdb",
"fixtures:gen": "pnpm -s tsx ./scripts/gen-fixtures.ts",
"compat:diff": "pnpm -s tsx ./scripts/diff-php-ts.ts",
"compat:ci": "pnpm build && pnpm fixtures:gen && pnpm compat:diff"
},
"devDependencies": {
"@types/node": "^22.13.1",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
}
}