-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 907 Bytes
/
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
{
"name": "pixi-react-shapes",
"version": "1.0.0",
"description": "basic shapes for @pixi/react",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx",
"dev": "tsup src/index.tsx --watch",
"dev:website": "pnpm --prefix website dev",
"build:website": "pnpm --prefix website build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "JohnTNP",
"license": "ISC",
"devDependencies": {
"@pixi/graphics": "^7.4.2",
"@pixi/react": "^7.1.2",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"pixi.js": "^8.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}