-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "pixi-react-parallax",
"version": "1.0.15",
"description": "A parallax library for @pixi/react.",
"type": "module",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format esm,cjs --legacy-output --dts --external @pixi --external pixi.js --external react && echo '{\"type\": \"commonjs\"}' > ./dist/package.json && echo '{\"type\": \"module\"}' > ./dist/esm/package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azaeres/pixi-react-parallax.git"
},
"keywords": [
"pixi",
"react",
"parallax"
],
"author": "Ryan Barry",
"license": "ISC",
"bugs": {
"url": "https://github.com/azaeres/pixi-react-parallax/issues"
},
"homepage": "https://github.com/azaeres/pixi-react-parallax#readme",
"devDependencies": {
"@pixi/react": "^7.1.0",
"@types/react": "^18.2.20",
"pixi.js": "^7.2.4",
"react": "^18.2.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@pixi/react": ">=7.1.0",
"pixi.js": ">=7.2.4",
"react": ">=18.2.0"
}
}