-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "scratchpad",
"version": "1.0.0",
"description": "基于electron的javascript代码草稿纸,可运行js代码并用console.log、log、alert输出执行结果",
"main": "main.js",
"scripts": {
"start": "nodemon --watch views --exec electron .",
"dist": "electron-builder --win --x64"
},
"author": "resyu",
"license": "MIT",
"devDependencies": {
"electron": "^6.0.9",
"electron-builder": "^21.2.0",
"nodemon": "^1.19.2"
},
"repository": {
"type": "git",
"url": "https://github.com/resyu/Scratchpad.git"
},
"build": {
"appId": "resyu-Scratchpad",
"copyright": "resyu",
"productName": "代码草稿纸",
"directories": {
"output": "build"
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "assets/imgs/icon.ico",
"artifactName": "${productName}-Setup-${version}.${ext}",
"publisherName": "Kandra Labs, Inc."
}
},
"dependencies": {
"codemirror": "^5.48.4"
}
}