-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 958 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 958 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
29
30
31
32
33
34
35
{
"name": "@routstr/cli",
"version": "0.1.0",
"description": "CLI for interacting with a Routstr node",
"type": "module",
"bin": {
"routstr": "./dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun",
"dev": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"format:check": "biome format src",
"check": "biome check src",
"check:fix": "biome check --write src",
"test": "bun run typecheck && bun run lint && bun run format:check && bun run build",
"test:integration": "bun run build && bash scripts/integration-test.sh"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.0",
"typescript": "^5.5.0"
}
}