forked from brianhvo02/libmpv-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.51 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
{
"name": "libmpv-wasm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run link && npm run build:wasm && npm run build:wrapper",
"build:wasm": "scripts/build_segment_wasm",
"build:wrapper": "scripts/build_segment_wrapper",
"build:full": "npm run build && npm --prefix demo run build",
"build:vercel": "DOCKER_BUILD=1 BUILD_PATH=../public npm run build:full",
"dev": "npm run link && concurrently -c red,yellow,green -n wasm,wrapper,demo npm:dev:wasm npm:dev:wrapper npm:dev:demo",
"dev:wasm": "nodemon -e cpp -w src -x 'npm run build:wasm'",
"dev:wrapper": "nodemon -e ts,js -w src -x 'npm run build:wrapper'",
"dev:demo": "BROWSER=none npm --prefix demo start",
"dev:demo-vanilla": "npm --prefix demo-vanilla run dev",
"link": "scripts/link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianhvo02/libmpv-wasm.git"
},
"author": "Brian Vo",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/brianhvo02/libmpv-wasm/issues"
},
"homepage": "https://github.com/brianhvo02/libmpv-wasm#readme",
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/wicg-file-system-access": "^2023.10.5",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"file-system-access": "^1.0.4",
"lodash": "^4.17.21"
}
}