-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "chemical-mixtures",
"description": "Utilities for chemical mixtures",
"version": "2.0.4",
"license": "Apache 2",
"repository": {
"type": "git",
"url": "git+https://github.com/cdd/mixtures.git"
},
"main": ".",
"types": ".",
"files": [
"*"
],
"dependencies": {
"webmolkit": "^2.0.4"
},
"devDependencies": {
"@electron/remote": "^2",
"electron": "^33.0",
"electron-packager": "^8.1.0",
"raw-loader": "^4.0.2",
"stream-json": "^1.7.1",
"xmldom": "^0.1.16",
"@typescript-eslint/eslint-plugin": "^4.7",
"@typescript-eslint/parser": "^4.7",
"eslint": "^7.15",
"ts-loader": "^9.3.1",
"typescript": "^5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"build": {
"appId": "com.cdd.mixture.MixfileEditor",
"mac": {
"category": "public.app-category.productivity"
}
},
"scripts": {
"lint": "eslint src/**/*.ts",
"build-tsc": "tsc",
"build-src": "webpack --config webpack-src.config.js",
"build-cmd": "webpack --config webpack-cmd.config.js",
"build": "tsc && webpack --config webpack-src.config.js && webpack --config webpack-cmd.config.js"
}
}