-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "anime4k-webgpu",
"version": "1.0.0",
"description": "Anime4K WebGPU port",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack",
"dev": "nodemon",
"lint": "eslint . --ext .js,.ts"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,js,wgsl",
"exec": "npm run build"
},
"files": [
"lib/",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Anime4KWebBoost/Anime4K-WebGPU.git"
},
"keywords": [
"upscale",
"webgpu",
"video",
"anime",
"supersampling"
],
"author": "Anime4KWebBoost Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Anime4KWebBoost/Anime4K-WebGPU/issues"
},
"homepage": "https://github.com/Anime4KWebBoost/Anime4K-WebGPU#readme",
"peerDependencies": {
"@webgpu/types": "^0.1.38"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@webgpu/types": "^0.1.38",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.2",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}