-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.52 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
{
"name": "@eliancodes/brutal-ui",
"version": "1.0.0",
"description": "The brutalist UI components package, built for extendability and compatibility",
"repository": {
"type": "git",
"url": "git+https://github.com/ElianCodes/brutal-ui.git"
},
"type": "module",
"packageManager": "pnpm@10.32.1",
"main": "index.ts",
"module": "index.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.ts"
},
"./config": {
"types": "./index.d.ts",
"import": "./src/config/index.ts"
}
},
"types": "index.d.ts",
"files": [
"index.ts",
"index.d.ts",
"src"
],
"keywords": [
"astro",
"brutal",
"brutalist",
"design-system",
"components",
"ui"
],
"author": {
"name": "Elian Van Cutsem",
"email": "hello@elian.codes",
"url": "https://www.elian.codes"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ElianCodes/brutal-ui/issues"
},
"homepage": "https://github.com/ElianCodes/brutal-ui#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:release": "changeset publish",
"check": "astro check",
"pack:check": "npm pack --dry-run"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@changesets/cli": "^2.29.7",
"astro": "^6.2.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"astro": "^6.0.0"
}
}