-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 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
{
"name": "@p5-wrapper/next",
"description": "A NextJS specific library for the @P5-Wrapper/react project.",
"version": "3.0.1",
"type": "module",
"homepage": "https://github.com/P5-wrapper/next",
"license": "MIT",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"main": "./dist/next.umd.cjs",
"module": "./dist/next.js",
"exports": {
".": {
"import": "./dist/next.js",
"types": "./dist/main.d.ts",
"require": "./dist/next.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "rimraf dist && tsc && vite build",
"preview": "vite preview"
},
"keywords": [
"react",
"react-component",
"p5",
"processing",
"next",
"nextjs",
"typescript"
],
"author": {
"name": "James Robb",
"url": "https://github.com/jamesrweb"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/P5-wrapper/next.git"
},
"bugs": {
"url": "https://github.com/P5-wrapper/next/issues"
},
"peerDependencies": {
"@p5-wrapper/react": ">= 5.0.0",
"p5": ">= 2.0.0",
"next": ">= 16.0.0",
"react": ">= 19.0.0",
"react-dom": ">= 19.0.0"
},
"devDependencies": {
"@types/node": "^25.2.0",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}