-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "molrender",
"version": "0.7.4",
"description": "Create macromolecular images.",
"homepage": "https://github.com/molstar/molrender#readme",
"repository": {
"type": "git",
"url": "https://github.com/molstar/molrender.git"
},
"bugs": {
"url": "https://github.com/molstar/molrender/issues"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "npm run lint",
"build": "npm run build-tsc && npm run build-webpack",
"build-tsc": "tsc",
"build-webpack": "webpack --mode production",
"watch": "concurrently --kill-others \"npm:watch-tsc\" \"npm:watch-webpack\"",
"watch-tsc": "tsc -watch",
"watch-webpack": "webpack -w --mode development --stats minimal",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"bin": {
"molrender": "build/bin/molrender.js"
},
"files": [
"build/bin/molrender.js"
],
"author": "Mol* Contributors",
"contributors": [
"Jesse Liang <[email protected]>",
"Alexander Rose <[email protected]>",
"Sebastian Bittrich <[email protected]>",
"Ke Ma <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/gl": "^6.0.2",
"@types/node": "^20.8.2",
"@types/pngjs": "^6.0.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"acorn": "^8.7.1",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"typescript": "^4.7.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"argparse": "^2.0.1",
"gl": "8.0.2",
"jpeg-js": "^0.4.3",
"molstar": "4.7.1",
"pngjs": "^6.0.0",
"ts-node": "^10.9.2",
"util.promisify": "^1.1.1"
}
}