-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "figma-overlay",
"version": "1.0.12",
"private": false,
"license": "MIT",
"description": "Your best friend when working with Figma designs",
"author": {
"name": "Pitu",
"email": "[email protected]",
"url": "https://github.com/Pitu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pitu/figma-overlay.git"
},
"main": "dist/figma-overlay.umd.js",
"types": "./dist/src/components/FigmaOverlay.ce.vue.d.ts",
"scripts": {
"dev": "vite",
"build": "run-p type-check emit-types build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"emit-types": "vue-tsc --emitDeclarationOnly",
"lint": "prettier --check . && cross-env TIMING=1 eslint src --ext .ts,.vue",
"format": "prettier --write . && cross-env TIMING=1 eslint src --ext .ts,.vue --fix",
"postinstall": "husky install"
},
"files": [
"dist/**/*"
],
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-neon": "^0.1.40",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.3.0",
"vue-tsc": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "18.9.0"
},
"keywords": [
"figma",
"overlay",
"figma-overlay",
"design",
"pitu"
]
}