forked from sendaifun/solana-new
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 838 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
36
37
{
"name": "superstack",
"version": "0.2.0",
"private": true,
"license": "MIT",
"description": "Ship on Solana — Idea to Launch. Skills, repos, MCPs.",
"type": "module",
"bin": {
"superstack": "./dist/cli/index.js",
"solana-new": "./dist/cli/index.js"
},
"files": [
"dist/",
"skills/idea/",
"skills/build/",
"skills/launch/",
"skills/data/",
"skills/README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli/index.js",
"dev": "tsx cli/index.ts",
"postinstall": "node dist/cli/index.js init --agent 2>/dev/null || true",
"setup": "./setup"
},
"devDependencies": {
"@types/node": "^22.13.14",
"tsx": "^4.20.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"convex": "^1.34.1"
}
}