-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
93 lines (93 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "smart-tagz",
"version": "0.4.1",
"license": "MIT",
"type": "module",
"description": "A Smart input tags component for Vue 3",
"author": {
"name": "Prabhu Murthy",
"url": "https://www.prabhumurthy.com"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"rollup": "rimraf ./dist && rollup -c ./rollup.config.mjs",
"lint:css": "stylelint src/**/*.vue --custom-syntax postcss-html",
"lint": "eslint src/**/*.vue",
"lint:all": "pnpm lint:css && pnpm lint",
"prepare": "husky install",
"snyk": "pnpx snyk test",
"format": "prettier --write src/**/*.{vue,js}",
"clean": "pnpm format && pnpm lint:all"
},
"repository": {
"type": "git",
"url": "https://github.com/prabhuignoto/smart-tagz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.scss": [
"stylelint src/**/*.scss",
"git add"
],
"src/**/*.vue": [
"eslint src/**/*.vue",
"git add"
]
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"vue-feather-icons": "^5.1.0"
},
"devDependencies": {
"@rollup/plugin-beep": "^1.0.2",
"@rollup/plugin-buble": "^1.0.2",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-sucrase": "^5.0.1",
"@types/nanoid": "^3.0.0",
"@types/vue-feather-icons": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^8.3.1",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.62.0",
"stylelint": "^15.4.0",
"stylelint-config-standard": "^32.0.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vue": "^3.2.47",
"vue-template-compiler": "2.7.14"
},
"files": [
"dist",
"types"
],
"peerDependencies": {
"vue-feather-icons": "^5.1.0"
},
"main": "dist/smart-tagz.js",
"module": "dist/smart-tagz.esm.js",
"umd": "dist/smart-tagz.umd.js"
}