forked from playcanvas/texture-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
65
66
67
68
69
{
"name": "texture-tool",
"version": "1.2.0",
"author": "PlayCanvas <support@playcanvas.com>",
"homepage": "https://playcanvas.com/texture-tool",
"description": "PlayCanvas Texture Tool",
"keywords": [
"graphics",
"playcanvas",
"texture",
"tool",
"webgl",
"webgpu"
],
"license": "MIT",
"main": "src/index.js",
"bugs": {
"url": "https://github.com/playcanvas/texture-tool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/texture-tool.git"
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config",
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"rules": {
"import/no-unresolved": "off"
},
"globals": {
"Set": "readonly",
"JSZip": "readonly"
}
},
"eslintIgnore": [
"src/unused"
],
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@playcanvas/eslint-config": "^1.3.0",
"@playcanvas/observer": "^1.3.6",
"@playcanvas/pcui": "^4.0.9",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"jszip": "^3.10.1",
"playcanvas": "^1.62.1",
"rollup": "^3.21.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.2.1",
"rollup-plugin-sass": "^1.12.19",
"rollup-plugin-sourcemaps": "^0.6.3",
"serve": "^14.2.0"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"develop": "concurrently --kill-others \"npm run build:watch\" \"npm run serve\"",
"develop:local": "cross-env ENGINE_PATH=../engine npm run develop",
"lint": "eslint --ext .js src",
"serve": "serve dist"
}
}