-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.55 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
{
"name": "@pixi/layout",
"version": "2.0.1",
"description": "It is a library for arranging and resize pixi elements",
"homepage": "https://github.com/pixijs/layout",
"bugs": "https://github.com/pixijs/layout/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/layout.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/",
"*.d.ts"
],
"scripts": {
"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",
"start": "npm run storybook",
"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 --"
]
},
"dependencies": {
"pixi.js": "^8.0.4"
},
"devDependencies": {
"@pixi/storybook-renderer": "^0.1.0",
"@pixi/storybook-webpack5": "^0.1.0",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-storysource": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@storybook/types": "^7.6.17",
"storybook": "7.6.17",
"@pixi/extension-scripts": "^2.4.1",
"@pixi/ui": "^2.0.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-no-mixed-operators": "^1.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"typescript": "^5.4.2",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.22"
},
"peerDependencies": {
"pixi.js": "^8.0.4"
},
"publishConfig": {
"access": "public"
},
"extensionConfig": {
"lint": [
"src"
],
"docsName": "PixiJS Layout",
"docsTitle": "PixiJS Layout",
"docsDescription": "API Documentation for Layout components made with PixiJS",
"docsKeyword": "PixiJS, UI, components, layout"
}
}