-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 4.2 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "issie",
"version": "5.12.1",
"description": "Schematic editor and Simulator",
"homepage": "https://github.com/tomcl/issie",
"bugs": {
"url": "https://github.com/tomcl/issie/issues"
},
"license": "LGPL-3.0-or-later",
"author": "tomcl",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tomcl/issie.git"
},
"scripts": {
"clean-dev-mac": "sudo killall -9 node && sudo killall -9 dotnet && sudo killall -9 issie",
"clean-dev-win": "taskkill /f /im node.exe && taskkill /f /im dotnet.exe && taskkill /f /im issie.exe",
"compile": "dotnet fable src/Main -s && dotnet fable src/Renderer -s --define PRODUCTION",
"compile:parallel": "node scripts/parallel-compile.js",
"debug": "dotnet fable watch src/Main -s --run npm run debugrenderer",
"debugrenderer": "dotnet fable watch src/Renderer -s --define ASSERTS --run npm run start",
"dev": "dotnet fable watch src/Main -s --run npm run devrenderer",
"dev:parallel": "node scripts/parallel-dev.js",
"dev:fast": "cross-env WEBPACK_CONFIG=dev npm run dev:parallel",
"devrenderer": "dotnet fable watch src/Renderer -s --run npm run startlog",
"start": "cross-env NODE_ENV=development node scripts/start.js",
"startlog": "cross-env NODE_ENV=development ELECTRON_ENABLE_LOGGING=true node scripts/start.js",
"build": "cross-env NODE_ENV=production ELECTRON_ENABLE_LOGGING=true node scripts/build.js",
"build:analyze": "cross-env ANALYZE=true npm run build",
"pack": "npm run compile:parallel && npm run build && electron-builder --dir",
"dist": "npm run compile:parallel && npm run build && electron-builder",
"buildonly": "electron-builder",
"compile-sass": "cd src/renderer/scss && node-sass main.scss main.css",
"testcompiler": "cd src/Renderer/VerilogComponent/test && dotnet fable --noCache && node testParser.fs.js",
"typecheck": "dotnet build src/Renderer/Renderer.fsproj --no-restore",
"clean:cache": "rm -rf node_modules/.cache .fable"
},
"build": {
"appId": "ISSIE",
"files": [
"build/**/*"
],
"extraFiles": [
{
"from": "static",
"to": "resources/static",
"filter": [
"**/*"
]
}
],
"appx": {
"applicationId": "ISSIE"
},
"win": {
"icon": "public/icon.ico",
"target": "zip"
},
"linux": {
"icon": "public/icon.png",
"target": "zip"
},
"mac": {
"category": "public.app-category.productivity",
"entitlements": "public/entitlements.mac.plist",
"entitlementsInherit": "./public/entitlements.mac.plist",
"icon": "public/icon.icns",
"hardenedRuntime": true,
"provisioningProfile": "issie.provisionprofile",
"identity": "37DDC058086BDD9802403E2845A091DBE6F4D3DB",
"notarize": true
},
"dmg": {
"icon": false
}
},
"dependencies": {
"@electron/remote": "^2",
"async-mutex": "^0.5",
"bulma": "^1.0",
"bulma-tooltip": "^3",
"core-js": "^3",
"cross-zip": "^4",
"font-awesome": "^4",
"katex": "^0.16.21",
"nearley-unparse": "^1.0.1",
"npm": "^11",
"react-tooltip": "^5",
"source-map-support": "^0.5",
"usb": "^2.15",
"uuid": "11"
},
"devDependencies": {
"@electron/remote": "^2",
"babel-loader": "^10",
"babel-preset-minify": "^0.5",
"bufferutil": "^4",
"classnames": "^2",
"cross-env": "^7",
"css-loader": "^6",
"fs-extra": "11.3.0",
"dotenv": "^1",
"electron": "35.2.0",
"electron-builder": "26.0.13",
"electron-builder-notarize": "^1.5",
"@electron/notarize": "^3",
"enzyme": "^3",
"eslint": "9.2.0",
"file-loader": "^6",
"html-webpack-plugin": "^5",
"jest": "29.7.0",
"loglevel": "^1",
"mini-css-extract-plugin": "^2",
"nearley": "^2.20.1",
"prettier": "^2",
"prismjs": "^1.30",
"react": "^17",
"react-dom": "17",
"react-router-dom": "^6",
"react-simple-code-editor": "0.14.1",
"source-map-loader": "^5",
"style-loader": "^4",
"terser-webpack-plugin": "^5",
"url-loader": "^4",
"utf-8-validate": "^5",
"webpack": "^5",
"webpack-cli": "^5",
"webpack-dev-server": "^5"
},
"private": true
}