-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.71 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.71 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
{
"name": "varvar",
"version": "2.1.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'",
"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",
"version:bump:major": "npm version major --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.119.0",
"@types/node": "^22.19.1",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"figma-kit": "^1.0.0-beta.19",
"install": "^0.13.0",
"npm": "^11.6.2",
"prettier": "^3.6.2",
"sass": "^1.94.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-generate-file": "^0.3.1",
"vite-plugin-singlefile": "^2.3.0"
}
}