-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "@playcanvas/web-components",
"version": "0.1.10",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "Web Components for the PlayCanvas Engine",
"keywords": [
"custom-elements",
"declarative",
"html",
"playcanvas",
"typescript",
"web-components",
"webgl",
"webgpu",
"webxr"
],
"license": "MIT",
"main": "dist/pwc.cjs",
"module": "dist/pwc.mjs",
"browser": "dist/pwc.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"develop": "concurrently \"npm run watch\" \"npm run serve\"",
"docs": "typedoc",
"lint": "eslint examples/js examples/scripts src",
"serve": "serve",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"watch": "rollup -c -w"
},
"devDependencies": {
"@playcanvas/eslint-config": "^2.0.8",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tweenjs/tween.js": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"concurrently": "^9.1.2",
"earcut": "^3.0.1",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"globals": "^15.14.0",
"opentype.js": "^1.3.4",
"playcanvas": "^2.3.3",
"rollup": "^4.29.1",
"serve": "^14.2.4",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typedoc-plugin-mdn-links": "^4.0.6",
"typescript": "^5.7.2"
}
}