-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 951 Bytes
/
package.json
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
{
"name": "elbe-ui",
"version": "0.2.38",
"author": "Robin Naumann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RobinNaumann/elbe_react.git"
},
"keywords": [
"ui",
"ui-framework",
"flutter"
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:ts": "tsc",
"build:dts": "tsc --declaration",
"build:css": "sass -q style/elbe.scss dist/elbe.css",
"build": "rm -rf ./dist && bun run build:ts && bun run build:dts && bun run build:css"
},
"devDependencies": {
"@types/bun": "latest",
"sass": "^1.80.6"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@preact/preset-vite": "^2.9.1",
"@preact/signals": "^1.3.0",
"colors-convert": "^1.4.1",
"lucide-react": "^0.438.0",
"preact": "^10.24.2",
"preact-router": "^4.1.2",
"vite": "^5.4.10"
}
}