-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.2 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
{
"name": "scraps-ui",
"version": "0.5.1",
"description": "A UI library where everything is cut and torn paper",
"main": "src/scraps.js",
"style": "src/scraps.css",
"files": [
"src"
],
"keywords": [
"adapter",
"base-ui",
"collage",
"paper",
"react",
"seeded",
"shadcn",
"svg",
"tailwind",
"torn",
"typescript",
"ui",
"zero-dependency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/og2701/scraps.git"
},
"homepage": "https://scraps.ogme01.com",
"bugs": {
"url": "https://github.com/og2701/scraps/issues"
},
"exports": {
".": {
"types": "./src/scraps.d.ts",
"default": "./src/scraps.js"
},
"./react": {
"types": "./src/react.d.ts",
"default": "./src/react.js"
},
"./scraps.css": "./src/scraps.css",
"./styles.css": "./src/scraps.css",
"./tailwind.css": "./src/tailwind.css",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"peerDependencies": {
"react": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"types": "./src/scraps.d.ts",
"sideEffects": [
"*.css"
]
}