-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 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
{
"name": "fabric-react-renderer",
"version": "0.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A React renderer for Fabric.js",
"keywords": [
"fabric.js",
"fabric",
"react",
"react-renderer",
"typescript"
],
"homepage": "https://github.com/senorbeast/fabric-react-renderer",
"bugs": {
"url": "https://github.com/senorbeast/fabric-react-renderer/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Hrishikesh Sawant <hrishikeshas99@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/senorbeast/fabric-react-renderer.git"
},
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"vite": "vite",
"prepare": "pnpm build",
"ci": "pnpm build && pnpm check-format && cp src/fabric-jsx.d.ts dist/ && pnpm check-exports",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm"
},
"dependencies": {
"@types/fabric": "^5.3.10",
"fabric": "^6.6.1",
"react": "19.0.0",
"react-dom": "^19.0.0",
"react-reconciler": "^0.31.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@changesets/cli": "^2.28.1",
"@types/react": "^19.0.0",
"@types/react-reconciler": "^0.28.9",
"@vitejs/plugin-react": "^4.3.4",
"esbuild": "^0.25.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.1"
}
}