-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 931 Bytes
/
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
{
"name": "anime4k.js",
"version": "0.0.7",
"description": "Anime4K WebGL port/implementation",
"keywords": [
"anime4k",
"webgl",
"glsl",
"upscale",
"upscaler",
"image",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/monyone/Anime4K.js"
},
"main": "dist/anime4k.js",
"types": "d.ts/index.d.ts",
"files": [
"dist/**/*",
"d.ts/**/*",
"src/**/*",
"tsconfig.json"
],
"license": "MIT",
"scripts": {
"clean": "rimraf dist d.ts",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-loader": "^9.1.2",
"core-js": "^3.30.2",
"rimraf": "^5.0.1",
"ts-loader": "^9.4.2",
"typescript": "^5.4.5",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
}
}