-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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-inspector",
"description": "Browsing PixiJS display objects in context menu.",
"version": "3.0.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/evgeniy-polyakov/pixi-inspector.git"
},
"keywords": [
"pixi",
"pixijs",
"inspector",
"context",
"menu"
],
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"main": "./dist/pixi-inspector.js",
"types": "./dist/pixi-inspector.d.ts",
"peerDependencies": {
"pixi.js": "^7.2.4"
},
"devDependencies": {
"pixi.js": "^7.2.4",
"rimraf": "latest",
"typescript": "^4.9.5",
"tslib": "^2.6.1",
"rollup": "^3.28.0",
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0"
},
"scripts": {
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"build": "npm run lint && rimraf dist && rollup -c && tsc && node build/fix-typings.js"
}
}