-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "@pixi/rectangle-helpers",
"version": "3.0.0",
"description": "[Description of extension]",
"author": "[Author's name]",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"homepage": "https://pixijs.com/",
"bugs": "https://github.com/pixijs/extension-boilerplate/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/extension-boilerplate.git"
},
"scripts": {
"start": "xs serve",
"watch": "xs watch",
"build": "xs build",
"docs": "xs docs",
"lint": "xs lint",
"types": "xs types",
"release": "xs release",
"test": "xs test"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"files": [
"dist/",
"lib/",
"global.d.ts"
],
"peerDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0"
},
"devDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/extension-scripts": "latest"
}
}