-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·96 lines (96 loc) · 3.43 KB
/
package.json
File metadata and controls
executable file
·96 lines (96 loc) · 3.43 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "waveos",
"private": true,
"version": "7.0.9",
"type": "module",
"scripts": {
"dev": "git rev-parse --short HEAD > ./public/build && vite",
"build": "git rev-parse --short HEAD > ./public/build && vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"build:types": "tsc -p tsconfig.app.json --emitDeclarationOnly --declaration --outFile dist/types.d.ts --verbatimModuleSyntax false --isolatedModules false --removeComments",
"build:globals": "node tools/build-globals.mjs && node tools/convert-global.mjs",
"build:types:all": "npm run build:types && npm run build:globals",
"build:nominify": "git rev-parse --short HEAD > ./public/build && vite build --minify false",
"build:nogit": "vite build",
"build:nogit:nominify": "vite build --minify false",
"region:check": "node tools/validate-regions.mjs",
"console:check": "node tools/console-usage.mjs",
"method:check": "node tools/check-params.mjs",
"circularity": "npx madge --circular --extensions ts,svelte ./src",
"type:check": "node tools/typeoutblow.mjs",
"check:everything": "yarn run check && yarn console:check && yarn region:check && yarn method:check && yarn type:check"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "5.1.0",
"@tsconfig/svelte": "5.0.4",
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"@types/madge": "^5.0.3",
"fast-glob": "^3.3.3",
"madge": "^8.0.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "5.33.14",
"svelte-check": "^4.1.1",
"typescript": "^5.8.3",
"vite": "6.3.5"
},
"dependencies": {
"@castlenine/svelte-qrcode": "^2.3.0",
"@neodrag/svelte": "^2.3.1",
"@neodrag/vanilla": "2.3.0",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/preset-fire": "^3.2.0",
"@types/ansi-escapes": "^4.0.4",
"@types/gapi.client.drive": "^3.0.15",
"@types/highlight.js": "^10.1.0",
"@types/js-cookie": "^3.0.6",
"@types/jszip": "^3.4.1",
"@types/leo-profanity": "^1.5.4",
"@types/md5": "^2.3.5",
"@types/mime": "^4.0.0",
"@types/node": "^22.10.5",
"@types/sql.js": "^1.4.9",
"@types/string-width": "^4.0.1",
"@types/validator": "^13.12.2",
"@xterm/addon-clipboard": "^0.1.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-image": "^0.8.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"ansi-escapes": "^7.0.0",
"axios": "^1.7.9",
"check-password-strength": "^3.0.0",
"colorsea": "^1.2.2",
"dayjs": "^1.11.13",
"fuse.js": "^7.1.0",
"gapi-script": "^1.2.0",
"generate-password-ts": "^1.6.5",
"glob": "^11.0.3",
"highlight.js": "^11.11.1",
"human-filetypes": "^1.1.3",
"js-cookie": "^3.0.5",
"js-sha256": "^0.11.1",
"jszip": "^3.10.1",
"leo-profanity": "^1.7.0",
"mime": "^4.0.7",
"music-metadata": "^11.10.3",
"openmeteo": "^1.1.4",
"socket.io-client": "^4.8.1",
"sql.js": "^1.13.0",
"stacktrace-parser": "^0.1.11",
"string-width": "^7.2.0",
"svelte-markdown": "^0.4.1",
"svelte-splitpanes": "^8.0.9",
"ua-parser-js": "^2.0.3",
"validator": "^13.12.0",
"vite-plugin-no-bundle": "^4.0.0",
"xterm": "^5.3.0",
"xterm-addon-unicode11": "^0.6.0",
"xterm-readline": "^1.1.2"
}
}