-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "pixi-spriter",
"version": "0.6.0",
"private": true,
"description": "Spriter animation playback engine for pixi.js.",
"scripts": {
"build": "npm run clean && npm run compile",
"compile": "tsc",
"clean": "node scripts/clean",
"postinstall": "node scripts/linkDemoDep",
"release": "npm run build && node scripts/prepublish && cd dist && npm publish",
"test-pack": "npm run build && node scripts/prepublish && cd dist && npm pack",
"watch": "tsc --watch"
},
"dependencies": {
"@pixi/display": "^6.0.2",
"@pixi/loaders": "^6.0.2",
"@pixi/sprite": "^6.0.2"
},
"devDependencies": {
"node": "^16.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brinsleylogic/pixi-spriter.git"
},
"keywords": [
"spriter",
"spriter pro",
"animation",
"pixi.js"
],
"author": {
"name": "Brinsley Blackwood",
"email": "[email protected]",
"url": "https://brinsleylogic.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/brinsleylogic/pixi-spriter/labels/%E2%9A%A0%EF%B8%8F%20Bug"
},
"homepage": "https://github.com/brinsleylogic/pixi-spriter#readme"
}