-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@counterscale/cli",
"version": "3.4.1",
"descriptrion": "CLI for managing Counterscale deployments",
"homepage": "https://counterscale.dev",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/benvinegar/counterscale",
"directory": "packages/cli"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"counterscale": "./dist/index.js"
},
"scripts": {
"build": "tsc --build",
"dev": "pnpm run build && node ./dist/index.js",
"lint": "eslint .",
"test": "vitest run",
"test-ci": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"generate-secrets": "node scripts/generate-secrets.mjs"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@counterscale/server": "workspace:*",
"@types/node": "^22.10.2",
"bcryptjs": "^3.0.2",
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"figlet": "^1.7.0",
"inquirer": "^9.2.12",
"yargs": "^17.7.2",
"zx": "^8.8.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^4.0.8",
"globals": "^16.0.0",
"rollup-plugin-node-externals": "^8.0.0",
"typescript": "^5.3.3",
"vite": "^7.2.2",
"vitest": "^4.0.8",
"wrangler": "^4.23.0"
},
"overrides": {
"minimatch": "5.1.2",
"glob": "8.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}