-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1 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
{
"name": "ruby",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --packages=external --minify --outfile=self-cli.cjs",
"start": "node self-cli.cjs",
"dev": "tsx watch src/index.ts",
"download-chain": "node tools/download-chain.cjs",
"download-chain:order2": "node tools/download-chain.cjs 2",
"download-chain:order3": "node tools/download-chain.cjs 3",
"download-chain:order4": "node tools/download-chain.cjs 4",
"generate": "node tools/generate.cjs",
"test": "tsx --test tests/chain.test.ts tests/server.test.ts",
"test:chain": "tsx --test tests/chain.test.ts",
"test:server": "tsx --test tests/server.test.ts"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"js-yaml": "^4.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.3",
"esbuild": "^0.28.1",
"tsx": "^4.19.0",
"typescript": "^6.0.3"
}
}