-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 694 Bytes
/
package.json
File metadata and controls
30 lines (29 loc) · 694 Bytes
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
{
"name": "devup-figma-plugin",
"version": "1.0.0",
"description": "Devup Figma Plugin",
"main": "code.js",
"scripts": {
"dev": "rspack dev",
"build": "rspack build",
"watch": "rspack build --watch",
"test": "tsc --noEmit && bun test --coverage",
"lint": "biome check --error-on-warnings",
"lint:fix": "biome check --fix",
"prepare": "husky"
},
"author": "",
"license": "",
"devDependencies": {
"@figma/plugin-typings": "^1.123",
"@rspack/cli": "^1.7.6",
"@rspack/core": "^1.7.6",
"husky": "^9.1",
"typescript": "^5.9",
"@biomejs/biome": "^2.3",
"@types/bun": "^1.3"
},
"dependencies": {
"jszip": "^3.10"
}
}