-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 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
{
"name": "@z/canvas-react",
"version": "0.1.0",
"description": "A lightweight, high-performance Canvas rendering engine built with TypeScript and React.",
"keywords": [
"react",
"canvas",
"rendering-engine",
"typescript",
"graphics",
"scene-graph"
],
"author": "",
"license": "MIT",
"type": "module",
"main": "./dist/canvas-react.umd.js",
"module": "./dist/canvas-react.es.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/canvas-react.es.js",
"require": "./dist/canvas-react.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-reconciler": "^0.33.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^22.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^6.0.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"dependencies": {
"react-reconciler": "^0.33.0"
}
}