This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.03 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
{
"name": "muthur",
"version": "1.0.2",
"author": "person0b",
"main": "main.js",
"devDependencies": {
"concurrently": "^4.1.0",
"electron": "^5.0.13",
"electron-builder": "^21.2.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^4.0.4",
"sirv-cli": "^0.4.5",
"svelte": "^3.16.7",
"ws": "^7.2.1"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "concurrently \"run-p start:dev autobuild\" \"electron .\"",
"start": "sirv public",
"start:dev": "sirv public --dev",
"package-mac": "npm run build && electron-builder build --mac --publish never",
"package-win": "npm run build && electron-builder build --win --publish never"
},
"dependencies": {
"luxon": "^1.21.3",
"marked": "^0.7.0",
"nedb-promises": "^4.0.0"
},
"build": {
"appId": "com.electron.${name}",
"productName": "Muthur",
"copyright": "Copyright © 2019 ${author}",
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",
"!src",
"!data"
],
"mac": {
"icon": "public/icon.icns"
},
"win": {
"icon": "public/icon.ico",
"target": "portable"
},
"directories": {
"output": "dist"
}
}
}