forked from pixijs/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.46 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
104
105
106
107
108
109
110
111
112
113
{
"name": "@pixi/ui",
"version": "0.9.1",
"description": "It is a library that contains commonly used UI components, that are extensible to allow them to be used in any project",
"homepage": "https://github.com/pixijs/ui",
"bugs": "https://github.com/pixijs/ui/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/ui.git"
},
"license": "MIT",
"author": "PixiJS Team",
"sideEffects": false,
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib/",
"dist/"
],
"scripts": {
"start": "storybook dev -p 6006",
"build": "xs build",
"clean": "xs clean",
"deploy": "xs deploy",
"docs": "xs docs && npm run storybook:build",
"lint": "xs lint --max-warnings 0",
"lint:fix": "xs lint --fix",
"prepare": "husky install",
"release": "xs bump,build,docs,publish,git-push",
"serve": "xs serve",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build --output-dir docs/storybook",
"types": "xs types",
"watch": "xs watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs}": [
"npm run lint:fix --"
]
},
"extensionConfig": {
"lint": [
"src"
],
"docsName": "PixiJS UI",
"docsTitle": "PixiJS UI",
"docsDescription": "API Documentation for UI components made with PixiJS",
"docsKeyword": "PixiJS, UI, components"
},
"dependencies": {
"tweedle.js": "^2.1.0",
"typed-signals": "^2.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@pixi/core": "^7.3.1",
"@pixi/display": "^7.3.1",
"@pixi/eslint-config": "^4.0.1",
"@pixi/events": "^7.3.1",
"@pixi/extension-scripts": "^1.3.0",
"@pixi/graphics": "^7.3.1",
"@pixi/sprite": "^7.3.1",
"@pixi/storybook-renderer": "^0.0.6",
"@pixi/storybook-webpack5": "^0.0.6",
"@pixi/text": "^7.3.1",
"@pixi/text-bitmap": "^7.3.1",
"@pixi/text-html": "^7.3.1",
"@storybook/addon-essentials": "7.5.1",
"@storybook/addon-interactions": "7.5.1",
"@storybook/addon-links": "7.5.1",
"@storybook/addon-storysource": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@types/babel__core": "^7.1.20",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"eslint": "^8.30.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-no-mixed-operators": "^1.1.1",
"husky": "^8.0.0",
"jest": "^26.6.3",
"jest-raw-loader": "^1.0.1",
"lint-staged": "^13.1.0",
"storybook": "7.5.1",
"typescript": "^5.2.0"
},
"peerDependencies": {
"@pixi/core": "^7.3.1",
"@pixi/display": "^7.3.1",
"@pixi/events": "^7.3.1",
"@pixi/graphics": "^7.3.1",
"@pixi/sprite": "^7.3.1",
"@pixi/text": "^7.3.1",
"@pixi/text-bitmap": "^7.3.1",
"@pixi/text-html": "^7.3.1"
},
"publishConfig": {
"access": "public"
}
}