-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "@kacker/ui",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"scripts": {
"prepare": "bun run build",
"dev": "bunx concurrently \"bun run build:js --watch\" \"bun run build:types --watch\"",
"build:js": "NODE_ENV=production bun build src/index.tsx --outdir dist --external react --external react-dom --external react/jsx-runtime --external react/jsx-dev-runtime --external react/client --external react/server --external react-compiler-runtime",
"build:types": "tsc -p tsconfig.types.json",
"build": "bun run build:js && bun run build:types",
"ver-sync": "node scripts/sync-versions.js"
},
"dependencies": {
"bun-plugin-tailwind": "^0.0.14",
"jotai": "^2.15.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.0.6"
},
"peerDependencies": {
"@aashu-dubey/capacitor-statusbar-safe-area": "^4.0.0",
"@capgo/capacitor-navigation-bar": "7.3.18",
"@capacitor/app": "^7.1.0",
"@capacitor/status-bar": "^7.0.3",
"@capgo/capacitor-updater": "^7.27.5",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"prettier": "^3.6.2"
}
}