-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.68 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
{
"name": "varvar",
"version": "1.3.0",
"description": "VarVar is a Figma plugin that export variables to different formats.",
"main": "dist/code.js",
"type": "module",
"scripts": {
"build": "npm run build:ui && npm run build:plugin -- --minify",
"build:plugin": "esbuild src/code.ts --bundle --outfile=dist/code.js",
"build:ui": "vite build --minify esbuild --emptyOutDir=false",
"build:watch": "concurrently -n widget,iframe \"npm run build:plugin -- --watch\" \"npm run build:ui -- --watch\"",
"dev": "concurrently --kill-others-on-fail -n tsc,build,vite 'npm:tsc:watch' 'npm:build:watch' 'vite'",
"format": "prettier --write",
"test": "npm run tsc && npm run build",
"tsc": "tsc --noEmit",
"tsc:watch": "npm run tsc -- --watch --preserveWatchOutput",
"version:bump:patch": "npm version patch --no-git-tag-version",
"version:bump:minor": "npm version minor --no-git-tag-version"
},
"author": "Atropical AS",
"license": "GPL-3.0-only",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@figma/plugin-typings": "^1.106.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"figma-kit": "^1.0.0-beta.18",
"install": "^0.13.0",
"npm": "^11.0.0",
"prettier": "^3.4.2",
"sass": "^1.83.1",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-generate-file": "^0.2.0",
"vite-plugin-singlefile": "^2.1.0"
}
}