-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "pentaho-figma-plugin",
"private": true,
"version": "0.0.1",
"description": "Pentaho Figma plugin.",
"homepage": "https://github.com/lumada-design/pentaho-figma-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/lumada-design/pentaho-figma-plugin.git"
},
"license": "Apache-2.0",
"main": "code.js",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite build --watch",
"devcode": "vite build --watch --config vite.config.code.ts ",
"build": "vite build",
"buildcode": "vite build --config vite.config.code.ts",
"check": "biome check --write",
"format": "biome format --write",
"lint": "biome lint --write",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@figma/plugin-typings": "^1.94.0",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.427.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/figma": "^1.0.8",
"@types/node": "^20.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.0.2",
"vite": "^5.2.12",
"vite-figma-plugin": "^0.0.24",
"vite-plugin-singlefile": "^0.13.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write"
]
},
"engines": {
"node": ">=20.x"
},
"packageManager": "[email protected]"
}