-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.93 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
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
{
"name": "@p5-wrapper/next",
"description": "A NextJS specific library for the @P5-Wrapper/react project.",
"version": "3.0.1",
"type": "module",
"packageManager": "pnpm@12.3.4",
"engines": {
"node": ">=24.20.0"
},
"homepage": "https://github.com/P5-wrapper/next",
"license": "MIT",
"types": "./dist/main.d.ts",
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
}
},
"files": [
"README.md",
"dist/*"
],
"scripts": {
"build": "rimraf dist && tsc && vite build",
"dev": "vite",
"format": "pnpm prettier --write .",
"format:check": "pnpm prettier --check .",
"integrate": "pnpm format:check && pnpm lint && pnpm test && pnpm build",
"lint": "eslint --config config/eslint/eslint.config.ts",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier --config config/prettier/prettier.json --ignore-path .gitignore --ignore-path config/prettier/.prettierignore",
"test": "vitest run --config vite.config.ts",
"test:coverage": "vitest run --coverage --config vite.config.ts",
"test:watch": "vitest watch --config vite.config.ts"
},
"keywords": [
"react",
"react-component",
"p5",
"processing",
"next",
"nextjs",
"typescript"
],
"author": {
"name": "James Robb",
"url": "https://github.com/jamesrweb"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/P5-wrapper/next.git"
},
"bugs": {
"url": "https://github.com/P5-wrapper/next/issues"
},
"peerDependencies": {
"@p5-wrapper/react": ">= 5.0.0",
"next": ">= 16.0.0",
"p5": ">= 2.0.0",
"react": ">= 19.0.0",
"react-dom": ">= 19.0.0"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/eslint-plugin": "^8.0.1",
"@eslint/compat": "^2.1.1",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.59.0",
"@p5-wrapper/react": "^5.0.4",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "^16.3.3",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^26.5.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^4.1.11",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^10.10.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1",
"happy-dom": "^20.14.0",
"jiti": "^2.7.0",
"next": "^16.3.4",
"p5": "2.3.2",
"prettier": "^3.9.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"rimraf": "^6.1.3",
"typescript": "6.0.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.2.2",
"vite-plugin-dts": "^5.1.0",
"vitest": "^4.1.11",
"vitest-canvas-mock": "^1.2.0"
}
}