-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.78 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
{
"name": "shape-morph",
"version": "0.4.0",
"author": "Thereallo",
"repository": {
"type": "git",
"url": "git+https://github.com/Thereallo1026/shape-morph.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "1.3.13",
"@types/node": "^24.10.1",
"@types/react": "19.2.14",
"react": "19.2.6",
"tsup": "^8.5.1",
"typescript": "~5.9.3",
"ultracite": "7.7.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./tailwind.css": "./dist/tailwind.css",
"./react": {
"import": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"require": {
"types": "./dist/react/index.d.cts",
"default": "./dist/react/index.cjs"
}
}
},
"description": "Material Design 3 shape morphing for the web. CSS clip-path, SVG, and React support.",
"files": [
"dist",
"LICENSE"
],
"keywords": [
"material-design",
"shape-morph",
"clip-path",
"svg",
"animation",
"bezier",
"polygon",
"css-transitions",
"tailwind",
"react"
],
"license": "MIT",
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"scripts": {
"build": "tsup && bun scripts/generate-tailwind.ts",
"check": "ultracite check",
"fix": "ultracite fix",
"test": "bun test",
"prepublishOnly": "bun test && ultracite check && bun run build"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts"
}