-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "pixi-shadows",
"version": "1.1.0",
"description": "A plugin for PixiJS V6 that allows you to add dymanic shadows to your stage",
"author": "Tar van Krieken",
"main": "./dist/pixi-shadows.js",
"module": "./lib/pixi-shadows.es.js",
"bundle": "./dist/pixi-shadows.umd.js",
"namespace": "PIXI.shadows",
"types": "./index.d.ts",
"homepage": "https://github.com/TarVK/pixi-shadows",
"bugs": "https://github.com/TarVK/pixi-shadows/issues",
"license": "MIT",
"repository": "[email protected]:TarVK/pixi-shadows.git",
"scripts": {
"clean": "rimraf dist/* lib/* compile",
"start": "run-s watch",
"watch": "rollup -cw",
"prebuild": "run-s clean types",
"build": "rollup -c",
"postbuild": "run-p build:types build:demo",
"build:prod": "cross-env NODE_ENV=production run-s build",
"build:demo": "vite build",
"prebuild:types": "rimraf compile",
"build:types": "tsc --outDir compile && api-extractor run && concat -o index.d.ts ./api-header ./index.d.ts",
"lint": "eslint ./src",
"types": "tsc -noEmit",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"postversion": "run-s build:prod",
"postpublish": "git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore",
"dev": "vite dev --open /index.html"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"scripts",
"engines",
"devDependencies",
"eslintConfig"
]
},
"files": [
"dist/",
"lib/",
"index.d.ts",
"global.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"peerDependencies": {
"@pixi/app": "^6.4.2",
"@pixi/constants": "^6.4.2",
"@pixi/core": "^6.4.2",
"@pixi/display": "^6.4.2",
"@pixi/layers": "^1.0.11",
"@pixi/math": "^6.4.2",
"@pixi/sprite": "^6.4.2",
"@pixi/ticker": "^6.4.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.28.2",
"@pixi-build-tools/rollup-configurator": "~1.0.11",
"@pixi/eslint-config": "^4.0.1",
"@types/dat.gui": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"clean-package": "^1.0.1",
"concat": "^1.0.3",
"cross-env": "^7.0.3",
"dat.gui": "^0.7.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.1.0",
"npm-run-all": "^4.1.5",
"pixi.js": "^6.4.2",
"pixi-lights": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^2.5.3",
"rollup": "^2.50.5",
"stats-js": "^1.0.1",
"tslib": "^2.0.1",
"typescript": "^4.3.2",
"vite": "^2.9.13"
}
}