-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "link-prevue",
"version": "2.0.1",
"description": "Vue component for generate a link preview",
"main": "./dist/link-prevue.js",
"unpkg": "./dist/link-prevue.js",
"jsdelivr": "./dist/link-prevue.js",
"type": "module",
"scripts": {
"dev": "vite ./dev --config ./dev/vite.config.js",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"clean": "rm -rf node_modules && rm -rf package-lock.json"
},
"repository": {
"type": "git",
"url": "git://github.com/nivaldomartinez/link-prevue"
},
"files": [
"dist"
],
"keywords": [
"link",
"prevue",
"vue",
"preview"
],
"author": "Nivaldo Martinez",
"license": "MIT",
"bugs": {
"url": "https://github.com/nivaldomartinez/link-prevue/issues"
},
"homepage": "https://github.com/nivaldomartinez/link-prevue#readme",
"peerDependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"vite": "^5.0.10",
"vite-plugin-css-injected-by-js": "^3.3.1"
}
}