-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "@hunterchen/canvas",
"version": "0.12.0",
"description": "A React-based canvas library for creating pannable, zoomable, and interactive canvas experiences.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/hunterchen7/canvas.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"scripts": {
"build": "npm run clean && npm run build:css && npm run build:js && npm run build:types",
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
"build:js": "rolldown -c",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"peerDependencies": {
"framer-motion": "^11.0.0 || ^12.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.483.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@types/node": "^25.0.6",
"@types/react": "19.0.12",
"@types/react-dom": "19.0.4",
"framer-motion": "^12.26.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rolldown": "^1.0.0-rc.2",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2"
}
}