-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathpackage.json
114 lines (114 loc) · 2.9 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
114
{
"name": "@pixi/react",
"version": "0.0.0-development",
"description": "Write PixiJS applications using React declarative style.",
"keywords": [
"react",
"pixi"
],
"homepage": "https://github.com/pixijs/pixi-react#readme",
"bugs": {
"url": "https://github.com/pixijs/pixi-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/pixi-react.git"
},
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
}
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "types/index.d.ts",
"files": [
"lib",
"dist",
"types"
],
"scripts": {
"build": "rimraf dist lib types && npm run lint:fix && rollup -c && tsc",
"clean": "xs clean",
"docs": "xs docs",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"prepare": "husky install",
"prerelease": "npm run test:lint && npm run build",
"release": "xs bump,publish,git-push",
"test": "tsc --project tsconfig.test.json && vitest run",
"test:e2e": "tsc --project tsconfig.test.json && vitest run e2e",
"test:unit": "tsc --project tsconfig.test.json && vitest run unit",
"test:lint": "xs lint",
"test:watch": "vitest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --cache --fix --max-warnings 0"
]
},
"dependencies": {
"its-fine": "^1.2.5",
"react-reconciler": "0.31.0"
},
"devDependencies": {
"@pixi/extension-scripts": "^4.0.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.0",
"@types/react-reconciler": "^0.28.9",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.0.4",
"husky": "^8.0.0",
"jsdom": "^25.0.0",
"pixi.js": "8.2.6",
"playwright": "^1.45.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.18.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^5.4.5",
"vitest": "^2.0.0"
},
"peerDependencies": {
"pixi.js": "^8.2.6",
"react": ">=19.0.0"
},
"overrides": {
"rollup": "^4.18.0"
},
"publishConfig": {
"access": "public"
},
"extensionConfig": {
"lint": [
"test",
"lib"
],
"environments": [
"node"
],
"docsName": "PixiJS React",
"docsTitle": "PixiJS React API Documentation",
"docsDescription": "Documentation for PixiJS React library",
"docsKeyword": "docs, documentation, pixi, pixijs, react, html5, javascript, jsdoc"
}
}