-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.6 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.6 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
{
"name": "variables2json",
"version": "1.0.0",
"description": "Your Figma Plugin",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others -p \"{name}\" -n \"ui ,code\" -c \"cyan.bold,green.bold\" \"npm run start:ui\" \"npm run start:code\"",
"start:ui": "vite build --watch --config vite-ui.config.js",
"start:code": "vite build --watch --config vite-code.config.js",
"build": "vite build --config vite-ui.config.js && vite build --config vite-code.config.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier ./src --write",
"analyze": "npm run lint && npm run format && vite build --config vite-ui.config.js --mode analyze && vite build --config vite-code.config.js --mode analyze"
},
"author": "Mark Mooibroek",
"license": "ISC",
"dependencies": {
"@figma/plugin-typings": "^1.40.0",
"axios": "^1.6.7",
"figma-plugin-ds": "^1.0.1",
"prettier": "^2.8.8",
"vue": "^3.2.26",
"vue-router": "^4.2.2",
"vuex": "^4.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.2.26",
"@vueuse/core": "^10.2.1",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.15.1",
"floating-vue": "^2.0.0-beta.24",
"sass": "^1.63.6",
"typescript": ">=3.3.1 <5.1.0",
"vite": "^4.3.9",
"vite-plugin-singlefile": "^0.13.5"
}
}