-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
{
"name": "react-tela",
"version": "0.0.3",
"description": "React renderer for Canvas",
"type": "module",
"packageManager": "[email protected]",
"module": "./dist/index.js",
"types": "./dist/index.js.map",
"exports": {
".": "./dist/index.js",
"./render": "./dist/render.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "esbuild --watch src/test.tsx --bundle --sourcemap --outfile=test.js",
"format": "biome format --write src examples test",
"node": "tsx examples/node.tsx",
"test": "vitest"
},
"keywords": [],
"author": "Nathan Rajlich <[email protected]>",
"license": "MIT",
"dependencies": {
"parse-svg-path": "^0.1.2",
"react-reconciler": "^0.29.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@napi-rs/canvas": "^0.1.48",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^20.8.6",
"@types/react": "^18.2.28",
"@types/react-reconciler": "^0.28.5",
"esbuild": "^0.19.4",
"jest-image-snapshot": "^6.4.0",
"react": "^18.2.0",
"react-fps": "^1.0.6",
"react-router-dom": "^6.23.0",
"terminal-image": "^2.0.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vitest": "^1.3.1",
"yoga-wasm-web": "^0.3.3"
},
"peerDependencies": {
"react": "18"
}
}