-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "pixi-scenegraph",
"version": "2.7.0",
"description": "typescript scene engine for pixi.js 8.3.3",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"_clear": "rimraf ./dist",
"_version": "node version.js",
"doc": "typedoc src/index.ts --exclude **/node_modules/** --out docs/generated",
"format": "npx prettier --write .",
"prePublish": "npm run _version && npm run format && npm run build && npm run doc",
"build": "npm run _clear && npx rollup -c rollup.config.ts --configPlugin typescript",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"pixi",
"scenegraph",
"game-engine",
"game-dev"
],
"repository": {
"type": "git",
"url": "git+https://github.com/enriko-riba/pixi-scenegraph.git"
},
"author": "Enriko Riba",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/offscreencanvas": "^2019.7.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.21.0",
"tslib": "^2.6.3",
"typedoc": "0.26.6",
"typescript": "5.5.4"
},
"peerDependencies": {
"pixi.js": "^8.3.3"
}
}