-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.21 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
{
"version": "0.12.4",
"scripts": {
"prebuild": "esbuild --bundle --platform=node --format=esm --packages=external --outfile=build.js build.ts",
"build": "node build.js",
"postbuild": "node -e \"require('node:fs').rmSync('build.js')\"",
"start": "npm run build && npm start -w platform/node --ignore-scripts",
"fmt": "sh ./fmt.sh",
"typecheck": "tsc --noEmit",
"test": "esbuild test/index.ts --bundle --outfile=.cache/test.js --platform=node --format=esm --packages=external && node .cache/test.js "
},
"workspaces": [
"platform/electron",
"platform/node",
"platform/wasm"
],
"author": "FullStacked",
"license": "MIT",
"type": "module",
"prettier": {
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1011.0",
"@codemirror/lsp-client": "^6.2.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@fullstacked/ai-agent": "github:fullstackedorg/ai-agent#b504156e5d9a3032f7a095465098bbf2f7cbaced",
"@fullstacked/codemirror-view": "github:fullstackedorg/codemirror-view#9d7705eb5f73f8733ec93a8f71bb4dd515f6fc86",
"@fullstacked/file-tree": "github:fullstackedorg/file-tree#a7b09ad58f0940fa094d4d3939a8009c7cd9a942",
"@fullstacked/stack-navigation": "github:fullstackedorg/stack-navigation#888302a680bcc501639dfdb0a6aede3da91f06ff",
"@fullstacked/ui": "github:fullstackedorg/ui#2020b31ae235a40f19a2329bd8b1f13808b7bfec",
"@types/node": "^25.5.0",
"@types/semver": "^7.7.1",
"csstype": "^3.2.3",
"dotenv": "^17.3.1",
"esbuild": "^0.27.4",
"fuse.js": "^7.1.0",
"node-gyp": "^12.2.0",
"open": "^11.0.0",
"prettier": "^3.8.1",
"pretty-bytes": "^7.1.0",
"pretty-ms": "^9.3.0",
"puppeteer": "^24.39.1",
"sass": "^1.98.0",
"semver": "^7.7.4",
"slugify": "^1.6.8",
"typescript": "^5.9.3"
},
"overrides": {
"glob": "12.0.0",
"tar": "7.5.11",
"fast-xml-parser": ">=5.5.7",
"@isaacs/brace-expansion": ">=5.0.1",
"minimatch": ">=10.2.3",
"immutable": "^5.1.5"
}
}