-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "@pixi/marquee-selection",
"version": "1.0.2",
"description": "Marching Ants UI extension for PixiJS",
"author": "Matt Karl <@bigtimebuddy>",
"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-userland/marquee-selection/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs-userland/marquee-selection.git"
},
"scripts": {
"start": "xs serve",
"watch": "xs watch",
"build": "xs build",
"docs": "xs docs",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"release": "xs release",
"test": "xs test"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"files": [
"dist/",
"lib/",
"global.d.ts"
],
"extensionConfig": {
"deployFiles": "{{dist,examples,docs}/**,preview.gif}"
},
"peerDependencies": {
"pixi.js": ">=8 <9"
},
"devDependencies": {
"@pixi/extension-scripts": "latest"
}
}