forked from a7ul/nodegui-plugin-qtmultimedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 752 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 752 Bytes
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
{
"name": "nodegui-plugin-multimedia",
"version": "1.0.0",
"description": "QtMultimedia plugin for NodeGui",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:addon",
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
"dev": "npm run build && qode dist/demo.js",
"postinstall": "node ./scripts/install.js"
},
"author": "Andrés Rodríguez",
"license": "MIT",
"peerDependencies": {
"@nodegui/nodegui": "*"
},
"dependencies": {
"cmake-js": "^5.3.2",
"cross-env": "^6.0.3",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"@nodegui/nodegui": "^0.35.0",
"@types/node": "^13.1.6",
"typescript": "^3.7.3"
}
}