-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "frame-by-frame",
"productName": "Frame By Frame",
"version": "1.0.1",
"description": "Visual Debugging and Recording Tool for 3D applications",
"main": "./app/main.js",
"build": {
"appId": "com.danielarmesto.framebyframe",
"fileAssociations": {
"ext": "fbf",
"name": "Frame by Frame File"
},
"win": {
"target": [
"portable",
"nsis"
]
},
"portable": {
"artifactName": "framebyframe_portable.exe"
}
},
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"buildRun": "tsc & npm start",
"build": "tsc",
"start": "electron ./app/main.js",
"dist": "build",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"author": "Daniel Armesto",
"license": "MIT",
"dependencies": {
"babylonjs": "^4.2.0",
"babylonjs-materials": "^4.0.3",
"resize-observer": "^1.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.10.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"electron": "^5.0.1",
"electron-builder": "^20.40.2",
"electron-packager": "^15.4.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^3.4.5"
}
}