-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
{
"name": "vuepress-plugin-iconify",
"type": "module",
"version": "0.6.0",
"packageManager": "pnpm@9.14.2",
"description": "Using icons more easier in VuePress",
"keywords": [
"vuepress",
"vuepress-plugin",
"iconify",
"icon",
"svg"
],
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "ntnyq13@gmail.com"
},
"homepage": "https://vuepress-plugin-iconify.ntnyq.com",
"repository": "ntnyq/vuepress-plugin-iconify",
"bugs": {
"url": "https://github.com/ntnyq/vuepress-plugin-iconify/issues"
},
"exports": {
".": "./dist/node/index.js",
"./client": "./dist/client/index.js",
"./client/*": "./dist/client/*",
"./package.json": "./package.json"
},
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s clean build:lib",
"build:lib": "tsc -b",
"clean": "rimraf dist *.tsbuildinfo",
"deploy": "run-s build docs:build",
"dev": "run-s clean dev:lib",
"dev:lib": "tsc -b --watch",
"docs:build": "pnpm -C docs run build",
"docs:dev": "pnpm -C docs run dev",
"lint": "eslint .",
"prepare": "husky",
"release": "run-s release:check release:publish",
"release:check": "run-s typecheck clean build",
"release:publish": "bumpp && pnpm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vuepress": "^2.0.0-rc.15"
},
"dependencies": {
"@iconify/vue": "^4.1.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@ntnyq/eslint-config": "^3.3.0",
"@ntnyq/prettier-config": "^1.22.0",
"@types/node": "^22.9.3",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vuepress": "^2.0.0-rc.18"
},
"prettier": "@ntnyq/prettier-config",
"nano-staged": {
"*.{js,ts,cjs,mjs,vue,yaml,yml,md,json}": "eslint --fix"
}
}