-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "elektron",
"version": "0.8.3",
"description": "A premium, minimalist admin dashboard designed with Technical Prestige.",
"author": "onokumus",
"license": "MIT",
"keywords": [
"admin",
"dashboard",
"ui",
"premium",
"minimalist",
"vite",
"tailwind"
],
"homepage": "https://github.com/onokumus/elektron",
"repository": {
"type": "git",
"url": "git+https://github.com/onokumus/elektron.git"
},
"type": "module",
"unpkg": "lib/elektron.umd.cjs",
"jsdelivr": "lib/elektron.js",
"main": "./lib/elektron.umd.cjs",
"module": "./lib/elektron.js",
"types": "./lib/elektron.d.ts",
"exports": {
".": {
"types": "./lib/elektron.d.ts",
"import": "./lib/elektron.js",
"require": "./lib/elektron.umd.cjs"
},
"./style": "./lib/elektron.css",
"./style.css": "./lib/elektron.css",
"./source": "./src/elektron.css"
},
"files": [
"lib",
"src"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "tsc && vite build --mode lib && tsc -p tsconfig.lib.json",
"preview": "vite preview"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1"
}
}