-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "lce-tool",
"version": "1.0.0",
"description": "Open-source reimplemented version of MCCToolChest and other tools in TypeScript.",
"private": false,
"license": "MIT",
"main": "main.js",
"author": "Lifix <[email protected]>",
"build": {
"icon": "public/favicon.png",
"productName": "LCE Tool",
"files": [
"public/**/*",
"main.js",
"preload.js"
],
"win": {},
"linux": {},
"mac": {
"icon": "public/favicon.icns"
}
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w --bundleConfigAsCjs",
"start": "sirv public --no-clear",
"electron": "wait-on http://localhost:8080 && electron .",
"electron-dev": "concurrently \"yarn run dev\" \"yarn run electron\"",
"preelectron-pack": "yarn run build",
"electron-pack": "electron-builder",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"custom-electron-titlebar": "^4.2.8",
"electron-serve": "^1.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"concurrently": "^7.5.0",
"electron": "^21.2.0",
"electron-builder": "^23.6.0",
"fluent-svelte": "^1.6.0",
"rollup": "^3.2.3",
"rollup-plugin-css-only": "^4.2.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^2.0.2",
"svelte": "^3.52.0",
"wait-on": "^6.0.1",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"typescript": "^4.0.0",
"tslib": "^2.0.0",
"@tsconfig/svelte": "^2.0.0"
}
}