-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.66 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 3.66 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@pixi/layout",
"version": "3.2.0",
"description": "A Yoga powered layout library for PixiJS",
"keywords": [
"layout",
"yoga",
"pixi"
],
"homepage": "https://github.com/pixijs/layout#readme",
"bugs": {
"url": "https://github.com/pixijs/layout/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/layout.git"
},
"license": "MIT",
"author": {
"name": "PixiJS Team"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.mjs",
"require": "./dist/components/index.cjs"
},
"./devtools": {
"types": "./dist/devtool/index.d.ts",
"import": "./dist/devtool/index.mjs",
"require": "./dist/devtool/index.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.cjs"
},
"./tailwind": {
"types": "./dist/tailwind/index.d.ts",
"import": "./dist/tailwind/index.mjs",
"require": "./dist/tailwind/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"workspaces": [
"src",
"docs"
],
"scripts": {
"build": "run-s build:lib build:docs",
"build:lib": "vite build",
"build:docs": "npm run --workspace docs build",
"clean": "xs clean",
"deploy:docs": "npm run build:lib && npm run deploy --workspace docs",
"lint:fix": "xs lint --fix",
"release": "npm run test && xs bump,git-push",
"publish-ci": "xs publish",
"start": "run-p start:storybook watch",
"start:storybook": "storybook dev -p 6006",
"start:docs": "npm run --workspace docs start",
"test": "run-s test:unit test:lint test:types",
"test:lint": "xs lint",
"test:types": "xs types",
"pretest:unit": "tsx tests/scripts/generate-story-imports.ts",
"test:unit": "vitest run",
"test:unit:watch": "vitest --browser.headless=false",
"watch": "vite build --watch",
"prepare": "husky"
},
"lint-staged": {
"*": [
"npm run lint:fix"
]
},
"devDependencies": {
"@pixi/devtools": "^2.0.1",
"@pixi/extension-scripts": "^4.0.0",
"@pixi/react": "8.0.2",
"@playwright/browser-chromium": "^1.52.0",
"@playwright/test": "^1.52.0",
"@storybook/react-vite": "^8.6.12",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@vitest/browser": "^3.1.2",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"pixelmatch": "^7.1.0",
"pixi.js": "^8.10.1",
"playwright": "^1.52.0",
"pngjs": "^7.0.0",
"prettier": "3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup-plugin-node-externals": "^8.0.0",
"storybook": "^8.6.12",
"tsx": "^4.19.3",
"vite": "^6.3.2",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-top-level-await": "^1.5.0",
"vitest": "^3.1.2",
"yoga-layout": "^3.2.1"
},
"peerDependencies": {
"pixi.js": "^8",
"yoga-layout": "^3"
},
"optionalDependencies": {
"@pixi/react": "^8.0.0"
},
"publishConfig": {
"access": "public"
},
"extensionConfig": {
"docsName": "PixiJS Yoga",
"docsTitle": "PixiJS Yoga API Documentation",
"docsDescription": "Documentation for PixiJS Yoga library",
"docsKeyword": "docs, documentation, pixi, pixijs, yoga, layout"
}
}