-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.5 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"version": "0.0.1",
"type": "module",
"main": "dist/elec/build.cjs",
"scripts": {
"dev": "vite",
"dev:all": "concurrently -n=svelte,elec -c=green,blue \"pnpm dev\" \"pnpm dev:elec\"",
"dev:elec": "node script/build --env=development --watch",
"build": "vite build",
"serve": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:fix": "pnpm format && eslint --fix --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chalk": "^5.2.0",
"codemirror": "^6.0.1",
"concurrently": "^7.6.0",
"css2json": "^1.1.1",
"cssbeautify": "^0.3.1",
"cssjson": "^2.1.3",
"default-shell": "^2.2.0",
"degit": "^2.8.4",
"dotenv": "^16.0.3",
"electron": "^22.0.3",
"electron-builder": "^23.6.0",
"electron-connect": "^0.6.3",
"electron-rebuild": "^3.2.9",
"esbuild": "^0.16.17",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"himalaya": "^1.1.0",
"html2json": "^1.0.2",
"json-to-css": "^0.1.0",
"minimist": "^1.2.7",
"monaco-editor": "^0.34.1",
"moveable": "^0.42.2",
"ora": "^6.1.2",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"pretty-ms": "^8.0.0",
"rollup": "^3.10.1",
"rollup-plugin-esbuild": "^5.0.0",
"svelte": "^3.55.1",
"svelte-awesome": "^3.0.1",
"svelte-check": "^3.0.2",
"svelte-dnd-action": "^0.9.22",
"svelte-preprocess": "^5.0.1",
"svelte-spa-router": "^3.3.0",
"svelte-split-pane": "^0.1.2",
"svelte-touch-to-mouse": "^1.0.0",
"svelte-tree": "^0.7.0",
"svelte-watch-resize": "^1.0.3",
"tiny-glob": "^0.2.9",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"v8-compile-cache": "^2.3.0",
"vite": "^4.0.4",
"vite-plugin-commonjs-externals": "^0.1.1",
"wait-on": "^7.0.1"
},
"dependencies": {
"chokidar": "^3.5.3",
"css-validator": "^0.11.0",
"directory-tree": "^3.5.1",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.1.0",
"node-pty": "^0.10.1",
"simply-beautiful": "^0.2.14",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"xterm-webfont": "^2.0.0"
}
}