-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
84 lines (84 loc) · 1.96 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
{
"name": "pixi-svg",
"version": "3.2.0",
"description": "SVG to Graphics DisplayObject for PIXI",
"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"
}
},
"extensionConfig": {
"lint": [
"src"
],
"namespace": "PIXI",
"docsCopyright": "PIXI Copyright © 2022 Matt Karl.",
"docsTitle": "PixiJS SVG Graphics Plugin",
"docsDescription": "SVG to Graphics DisplayObject for PIXI",
"docsKeyword": "PixiJS, Rendering, Graphics, SVG, Vector"
},
"scripts": {
"watch": "xs watch",
"clean": "xs clean",
"build": "xs build",
"start": "xs serve",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"test": "xs build,docs",
"docs": "xs docs",
"deploy": "xs deploy",
"release": "xs release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigtimebuddy/pixi-svg.git"
},
"keywords": [
"svg",
"pixi.js",
"graphics",
"rendering",
"webgl"
],
"files": [
"dist",
"lib"
],
"readme": "README.md",
"author": "Matt Karl <matt@mattkarl.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigtimebuddy/pixi-svg/issues"
},
"homepage": "https://github.com/bigtimebuddy/pixi-svg#readme",
"engines": {
"node": ">=16",
"yarn": "please-use-npm",
"npm": ">=8"
},
"pre-commit": [
"lint",
"types"
],
"peerDependencies": {
"@pixi/graphics": ">=5.0.0"
},
"devDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/extension-scripts": "^1.4.0",
"@pixi/graphics": "^7.0.0-X",
"@types/svg-arc-to-cubic-bezier": "^3.2.0",
"@types/tinycolor2": "^1.4.3",
"pre-commit": "^1.2.2",
"tinycolor2": "^1.4.2",
"d-path-parser": "^1.0.0",
"svg-arc-to-cubic-bezier": "^3.2.0"
}
}