-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "qsim",
"version": "1.0.0",
"description": "The implementation of the quantum computer simulator which is based on python&Node.js",
"main": "main.js",
"scripts": {
"lint-create": "./node_modules/.bin/eslint --init",
"lint": "./node_modules/.bin/eslint . --ext .js",
"fix": "./node_modules/.bin/eslint . --ext .js --fix",
"test": "pytest --disable-warnings",
"start": "electron ./main.js --inspect=5858",
"build-server": "pyinstaller server.spec",
"pack-app-win": "electron-builder --win --x64"
},
"build": {
"productName": "QSim",
"directories": {
"output": "build_output"
},
"files": [
"main.js",
"dist",
"gen-nodejs",
"assets",
"main-process",
"render-process",
"index.html",
"node_modules",
"_config.yml",
"package.json"
],
"appId": "com.scu.qsim",
"mac": {
"target": [
"dmg"
]
},
"win": {
"target": [
"nsis"
],
"icon": "favicon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"author": "mumu",
"license": "ISC",
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^22.9.1",
"eslint": "^7.14.0"
},
"dependencies": {
"glob": "^7.1.6",
"thrift": "^0.13.0-hotfix.1",
"yamljs": "^0.3.0"
}
}