-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.26 KB
/
package.json
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
64
65
66
{
"name": "fullstacked-editor",
"version": "0.10.4",
"scripts": {
"build": "esbuild build.ts --bundle --outfile=.cache/build.js --platform=node --format=esm --packages=external && node .cache/build.js",
"start": "npm run build -- --no-zip && npm start -w platform/node",
"fmt": "prettier . --write && cd core && gofmt -l -w .",
"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/node",
"platform/wasm"
],
"author": "FullStacked Org.",
"license": "GPL-3.0",
"type": "module",
"prettier": {
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.658.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-liquid": "^6.2.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.1",
"@fullstacked/stack-navigation": "^0.0.2",
"@types/adm-zip": "^0.5.6",
"@types/gzip-js": "^0.3.5",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@types/url-parse": "^1.4.11",
"@types/ws": "^8.5.12",
"@webcontainer/api": "^1.3.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"@zip.js/zip.js": "^2.7.52",
"adm-zip": "^0.5.16",
"buffer": "^6.0.3",
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"eslint-linter-browserify": "^9.11.1",
"fast-querystring": "^1.1.2",
"fuse.js": "^7.0.0",
"gzip-js": "^0.3.2",
"js-untar": "^2.0.0",
"open": "^10.1.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^9.1.0",
"puppeteer": "^23.4.1",
"sass": "^1.79.4",
"semver": "^7.6.3",
"slugify": "^1.6.6",
"source-map": "^0.7.4",
"typescript": "^5.7.2",
"url-parse": "^1.5.10",
"ws": "^8.18.0"
}
}