-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 KB
/
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
43
44
{
"name": "xprnkit",
"version": "0.0.37",
"source": "src/index.ts",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "rimraf ./build && tsc && bun run style",
"style": "tailwindcss -i ./src/global.css -o ./build/global.css",
"bundle": "rimraf ./build && microbundle --jsx React.createElement --jsxFragment React.Fragment",
"dev": "microbundle watch",
"types:bc": "bunx abi2ts proton.wrap -r proton_wrap > ./src/interfaces/proton_wrap.ts"
},
"files": [
"build",
"build/styles.css"
],
"devDependencies": {
"@rockerone/abi2ts": "^0.1.5",
"@types/bun": "latest",
"microbundle": "^0.15.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@proton/api": "^28.7.1",
"@proton/js": "^28.0.0",
"@proton/web-sdk": "^4.2.19",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@types/node": "^22.5.4",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"lucide-react": "^0.441.0",
"react": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
}
}