-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "@korkje/p5-react",
"version": "0.7.0",
"description": "Simple p5.js wrapper for React",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/korkje/p5-react.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/p5": "^1.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"p5": "^1.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.0.0",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"@types/p5": "^1.7.0",
"p5": "^1.7.0",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"type": "module",
"module": "dist/lib.js",
"types": "dist/lib.d.ts",
"files": [
"dist"
]
}