-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "webpxmux",
"version": "0.0.3",
"main": "./lib/src/webpxmux.js",
"types": "./lib/src/webpxmux.d.ts",
"author": "Makito <sumimakito@hotmail.com>",
"license": "MIT",
"repository": "git://github.com/SumiMakito/webpxmux.js.git",
"keywords": [
"webp",
"encode",
"decode",
"mux",
"demux",
"muxing",
"demuxing"
],
"bugs": {
"url": "https://github.com/SumiMakito/webpxmux.js/issues"
},
"homepage": "https://github.com/SumiMakito/webpxmux.js#readme",
"scripts": {
"build": "yon run build:make && yon run build:js",
"build:make": "emcmake cmake . && make -j4",
"build:node": "tsc && cpy build/webpxmux.wasm lib/build",
"build:web": "webpack",
"build:js": "yon run build:node && yon run build:web"
},
"dependencies": {
"@types/emscripten": "^1.39.4"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cpy-cli": "^3.1.1",
"file-loader": "^6.0.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^3.0.8",
"ts-loader": "^8.0.2",
"tsc": "^1.20150623.0",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-compiler-plugin": "^1.1.1",
"yarn-or-npm": "^3.0.1"
}
}