forked from pixijs-userland/graphics-smooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@pixi/graphics-smooth",
"version": "0.0.30",
"description": "PixiJS v6 plugin for smooth HHAA rendering of shapes",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"main": "./dist/pixi-graphics-smooth.js",
"module": "./lib/pixi-graphics-smooth.es.js",
"bundle": "./dist/pixi-graphics-smooth.umd.js",
"namespace": "PIXI.smooth",
"types": "./index.d.ts",
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/graphics-smooth/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/graphics-smooth.git"
},
"scripts": {
"clean": "rimraf dist/* lib/* compile",
"start": "run-s watch",
"watch": "rollup -cw",
"prebuild": "run-s clean lint types",
"build": "rollup -c",
"postbuild": "run-s build:types",
"build:prod": "cross-env NODE_ENV=production run-s build",
"prebuild:types": "rimraf compile",
"build:types": "tsc --outDir compile && api-extractor run",
"lint": "eslint ./src",
"types": "tsc -noEmit",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"postversion": "run-s build:prod",
"postpublish": "git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"scripts",
"engines",
"devDependencies",
"eslintConfig"
]
},
"eslintConfig": {
"extends": [
"@pixi/eslint-config"
],
"rules": {
"linebreak-style": 0
}
},
"files": [
"dist/",
"lib/",
"index.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"peerDependencies": {
"@pixi/constants": "^6.0.4",
"@pixi/core": "^6.0.4",
"@pixi/display": "^6.0.4",
"@pixi/graphics": "^6.0.4",
"@pixi/math": "^6.0.4",
"@pixi/utils": "^6.0.4"
},
"devDependencies": {
"@microsoft/api-extractor": "7.17.1",
"@pixi-build-tools/rollup-configurator": "~1.0.11",
"@pixi/constants": "^6.0.4",
"@pixi/core": "^6.0.4",
"@pixi/display": "^6.0.4",
"@pixi/eslint-config": "^2.0.1",
"@pixi/graphics": "^6.0.4",
"@pixi/math": "^6.0.4",
"@pixi/utils": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"clean-package": "^1.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.5.3",
"rollup": "^2.23.1",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
}
}