-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "avif-player-web",
"version": "0.4.0",
"description": "使用webassembly软解播放AVIF动画文件",
"main": "./lib/index.js",
"browser": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch --mode=development",
"serve": "webpack serve",
"pub": "npm publish",
"patch": "npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cct124/avif-player-web.git"
},
"bugs": {
"url": "https://github.com/cct124/avif-player-web/issues"
},
"homepage": "https://github.com/cct124/avif-player-web",
"keywords": [
"canvas",
"avif",
"libavif",
"avif-decoder",
"animation",
"webassembly"
],
"author": "Jane",
"license": "Apache-2.0",
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"worker-loader": "^3.0.8"
},
"dependencies": {}
}