-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.69 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.69 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
{
"name": "fdnext",
"private": true,
"type": "module",
"version": "3.0.0",
"description": "Memory chip parsing and resource toolkit",
"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 && tsc -p tsconfig.json --noEmit --pretty false",
"server:dev": "pnpm -C packages/server dev",
"server:start": "pnpm -C packages/server start",
"cf-workers:build": "pnpm -C packages/core build && pnpm -C packages/cf-workers build",
"cf-workers:dev": "pnpm dlx wrangler dev --config wrangler.jsonc",
"cf-workers:deploy": "pnpm dlx wrangler deploy --config wrangler.jsonc",
"cf-workers:deploy:dry-run": "pnpm dlx wrangler deploy --dry-run --outdir .wrangler-bundle --config wrangler.jsonc",
"cli": "pnpm -s tsx ./packages/core/src/cli/index.ts",
"fdbgen:build": "pnpm -C packages/fdbgen build",
"fdbgen:generate": "pnpm -s tsx ./packages/fdbgen/src/cli.ts build",
"fdbgen:audit": "pnpm -s tsx ./packages/fdbgen/src/cli.ts audit --file packages/core/resources/fdb.json",
"fdbgen:audit-extra": "pnpm -s tsx ./packages/fdbgen/src/cli.ts audit-extra",
"fdbgen:audit:trace": "pnpm -s tsx ./packages/fdbgen/src/cli.ts audit --input ../fdfdb --version 82 --trace-sources",
"fdbgen:crawl-mdb": "pnpm -s tsx ./packages/fdbgen/src/cli.ts crawl-mdb",
"contract:check": "pnpm -C packages/contract-test check"
},
"devDependencies": {
"@types/node": "^25.8.0",
"tsdown": "^0.22.0",
"tsx": "^4.22.1",
"typescript": "^6.0.3"
}
}