-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "@pixi-essentials/svg",
"version": "3.0.0",
"description": "Native SVG Renderer on top of PixiJS",
"main": "lib/svg.js",
"module": "lib/svg.es.js",
"bundle": "dist/svg.js",
"types": "./index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js --silent",
"build:types": "rm -rf compile index.d.ts && tsc && api-extractor run && rm -rf compile",
"lint": "eslint --ext .ts,.js src/ test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SukantPal/pixi-essentials.git"
},
"keywords": [
"svg",
"pixijs",
"svg-mask",
"svg-filter",
"svg-path",
"vg",
"openvg"
],
"author": "Shukant K. Pal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SukantPal/pixi-essentials/issues"
},
"homepage": "https://github.com/SukantPal/pixi-essentials#readme",
"files": [
"lib",
"dist",
"*.d.ts"
],
"devDependencies": {
"pixi.js": "^8.4.0",
"@pixi-essentials/eslint-config": "^1.0.0",
"eslint": "^7.9.0",
"rollup": "^2.28.1",
"@pixi-build-tools/rollup-configurator": "^1.0.10",
"typescript": "~5.3.3",
"@microsoft/api-extractor": "~7.47.9"
},
"peerDependencies": {
"pixi.js": "^8.4.0"
},
"dependencies": {
"d-path-parser": "^1.0.0",
"tinycolor2": "^1.4.1",
"@pixi-essentials/gradients": "^2.0.0",
"@pixi-essentials/texture-allocator": "~3.0.0",
"libtess": "~1.2.2"
},
"publishConfig": {
"access": "public"
}
}