-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 KB
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
{
"name": "@pixi-essentials/transformer",
"version": "3.0.4",
"description": "Interactive display-object to edit the transformation matrices of display-objects",
"main": "lib/transformer.js",
"module": "lib/transformer.es.js",
"bundle": "dist/transformer.js",
"types": "./index.d.ts",
"scripts": {
"build": "rollup -c node_modules/@pixi-build-tools/rollup-configurator/index.js --silent",
"build:types": "rm -rf compile && tsc && api-extractor run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SukantPal/pixi-essentials.git"
},
"keywords": [
"pixijs",
"transfomer",
"konva-transformer"
],
"author": "Shukant K. Pal <shukantpal@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SukantPal/pixi-essentials/issues"
},
"homepage": "https://github.com/SukantPal/pixi-essentials#readme",
"files": [
"lib",
"dist",
"index.d.ts"
],
"dependencies": {
"@pixi-essentials/bounds": "~3.0.0",
"@pixi-essentials/object-pool": "~1.0.1"
},
"peerDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/events": "^7.0.0",
"@pixi/graphics": "^7.0.0",
"@pixi/math": "^7.0.0"
},
"devDependencies": {
"@pixi-essentials/eslint-config": "~1.0.0",
"@pixi-build-tools/rollup-configurator": "^1.0.10",
"tslib": "~2.0.1",
"typescript": "~5.3.3",
"eslint": "~7.7.0",
"rollup": "~2.27.0",
"@microsoft/api-extractor": "~7.47.9"
},
"publishConfig": {
"access": "public"
}
}