forked from playcanvas/supersplat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 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
70
71
72
73
74
75
76
77
{
"name": "super-splat",
"version": "0.9.5",
"author": "PlayCanvas<support@playcanvas.com>",
"homepage": "https://playcanvas.com",
"description": "All the splat things",
"keywords": [
"playcanvas",
"ply",
"gaussian",
"splat",
"editor"
],
"license": "MIT",
"main": "index.js",
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"@playcanvas/eslint-config",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript"
],
"rules": {
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": true
}
],
"import/no-unresolved": "off"
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "serve dist",
"develop": "concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"develop:local": "cross-env ENGINE_PATH=../engine npm run develop",
"build:local": "cross-env ENGINE_PATH=../engine npm run build",
"watch:local": "cross-env ENGINE_PATH=../engine npm run watch",
"lint": "eslint --ext .ts src",
"test": "jest"
},
"devDependencies": {
"@playcanvas/eslint-config": "^1.4.1",
"@playcanvas/pcui": "^4.1.2",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"playcanvas": "1.66.1",
"rollup": "^3.25.1",
"rollup-plugin-sass": "^1.12.21",
"rollup-plugin-visualizer": "^5.9.2",
"serve": "^14.2.0",
"tslib": "^2.5.3"
}
}