@tollerud/ui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +242 -0
- package/dist/index.cjs +2750 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +704 -0
- package/dist/index.d.ts +704 -0
- package/dist/index.js +2650 -0
- package/dist/index.js.map +1 -0
- package/globals.css +920 -0
- package/package.json +104 -0
- package/tia-full-figure.svg +558 -0
- package/tokens.css +525 -0
- package/tollerud-avatar.png +0 -0
- package/tollerud-avatar.svg +85 -0
- package/tollerud-logo.svg +1 -0
- package/tollerud-preset.js +191 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tollerud/ui",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Tollerud User Interface — dark, monochrome + yellow accent. Noir aesthetic meets modern utility.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Tollerud/design-system.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://tollerud.github.io/design-system/",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Tollerud/design-system/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"sideEffects": [
|
|
17
|
+
"*.css"
|
|
18
|
+
],
|
|
19
|
+
"main": "./dist/index.cjs",
|
|
20
|
+
"module": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"require": {
|
|
29
|
+
"types": "./dist/index.d.cts",
|
|
30
|
+
"default": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"./globals.css": "./globals.css",
|
|
34
|
+
"./tokens.css": "./tokens.css",
|
|
35
|
+
"./preset": "./tollerud-preset.js",
|
|
36
|
+
"./tollerud-logo.svg": "./tollerud-logo.svg",
|
|
37
|
+
"./tollerud-avatar.svg": "./tollerud-avatar.svg",
|
|
38
|
+
"./tollerud-avatar.png": "./tollerud-avatar.png",
|
|
39
|
+
"./tia-full-figure.svg": "./tia-full-figure.svg"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"globals.css",
|
|
44
|
+
"tokens.css",
|
|
45
|
+
"tollerud-preset.js",
|
|
46
|
+
"tollerud-logo.svg",
|
|
47
|
+
"tollerud-avatar.svg",
|
|
48
|
+
"tollerud-avatar.png",
|
|
49
|
+
"tia-full-figure.svg"
|
|
50
|
+
],
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"prepublishOnly": "npm run build",
|
|
54
|
+
"preview": "open preview.html"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"@paper-design/shaders-react": "^0.0.76",
|
|
58
|
+
"clsx": "^2.0.0",
|
|
59
|
+
"react": ">=18",
|
|
60
|
+
"react-dom": ">=18",
|
|
61
|
+
"tailwind-merge": "^2.0.0 || ^3.0.0",
|
|
62
|
+
"tailwindcss": "^3.4.0 || ^4.0.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependenciesMeta": {
|
|
65
|
+
"@paper-design/shaders-react": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
71
|
+
"@radix-ui/react-dropdown-menu": "^2.1.17",
|
|
72
|
+
"@radix-ui/react-progress": "^1.1.9",
|
|
73
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
74
|
+
"@radix-ui/react-tooltip": "^1.2.9",
|
|
75
|
+
"class-variance-authority": "^0.7.1",
|
|
76
|
+
"framer-motion": "^12.40.0",
|
|
77
|
+
"lucide-react": "^1.17.0",
|
|
78
|
+
"sonner": "^2.0.7"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@types/react": "^18.3.29",
|
|
82
|
+
"@types/react-dom": "^18.3.7",
|
|
83
|
+
"clsx": "^2.1.1",
|
|
84
|
+
"react": "^18.3.1",
|
|
85
|
+
"react-dom": "^18.3.1",
|
|
86
|
+
"tailwind-merge": "^2.6.1",
|
|
87
|
+
"tsup": "^8.4.0",
|
|
88
|
+
"typescript": "^5.6.0"
|
|
89
|
+
},
|
|
90
|
+
"keywords": [
|
|
91
|
+
"tollerud",
|
|
92
|
+
"design-system",
|
|
93
|
+
"react",
|
|
94
|
+
"tailwind",
|
|
95
|
+
"dark-theme",
|
|
96
|
+
"monochrome",
|
|
97
|
+
"noir",
|
|
98
|
+
"tia",
|
|
99
|
+
"ui"
|
|
100
|
+
],
|
|
101
|
+
"publishConfig": {
|
|
102
|
+
"access": "public"
|
|
103
|
+
}
|
|
104
|
+
}
|