-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "nuxt-symbol-icons",
"description": "A nuxt(2) module for using svg sprite icon.",
"version": "2.1.2",
"main": "./lib/module.js",
"types": "./lib/index.d.ts",
"repository": "git@github.com:yisibell/nuxt-symbol-icons.git",
"author": {
"name": "elenh",
"email": "yisiwings@163.com"
},
"license": "MIT",
"files": [
"lib",
"types"
],
"keywords": [
"nuxt2",
"nuxt-module",
"svg-sprite-loader",
"svg",
"vue-symbol-icon",
"icon"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release": "npm run build && changelogen --release && npm publish --access=public && git push --follow-tags"
},
"dependencies": {
"loader-utils": "^2.0.4",
"svg-sprite-loader": "^6.0.11",
"svgo": "^3.0.2",
"svgo-extra": "^1.2.0",
"vue-symbol-icon": "^2.2.1"
},
"peerDependencies": {
"nuxt": "^2.15.0"
},
"devDependencies": {
"@nuxt/types": "^2.16.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/loader-utils": "^2.0.3",
"@types/svg-sprite-loader": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"changelogen": "^0.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.0",
"typescript": "~5.0.3"
}
}