-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.22 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.22 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
{
"name": "arrstack-installer",
"version": "1.0.0",
"type": "module",
"bin": {
"arrstack": "src/cli.ts"
},
"scripts": {
"dev": "bun run src/cli.ts",
"prepare": "mkdir -p node_modules/react-devtools-core && echo '{\"name\":\"react-devtools-core\",\"version\":\"0.0.0\",\"main\":\"index.js\",\"type\":\"module\"}' > node_modules/react-devtools-core/package.json && echo 'export default { initialize(){}, connectToDevTools(){} };' > node_modules/react-devtools-core/index.js",
"build": "bun run prepare && bun build --compile --minify --target=bun-linux-x64 src/cli.ts --outfile dist/arrstack-linux-x64",
"build:arm64": "bun run prepare && bun build --compile --minify --target=bun-linux-arm64 src/cli.ts --outfile dist/arrstack-linux-arm64",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/react": "^19.2.14",
"bun-types": "^1.3.12",
"ink-testing-library": "^4.0.0"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"commander": "^14.0.3",
"handlebars": "^4.7.9",
"ink": "^7.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.5",
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}