-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.31 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
{
"name": "vuepress-plugin-social-share",
"type": "module",
"version": "2.0.0-beta.23",
"packageManager": "pnpm@9.12.3",
"description": "Social sharing plugin for VuePress",
"keywords": [
"vuepress",
"vuepress-plugin",
"share",
"social",
"social-share",
"sns",
"facebook",
"twitter",
"weibo"
],
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "ntnyq13@gmail.com"
},
"homepage": "https://social-share.ntnyq.com",
"bugs": {
"url": "https://github.com/ntnyq/vuepress-plugin-social-share/issues"
},
"repository": "ntnyq/vuepress-plugin-social-share",
"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 copy",
"build:docs": "pnpm -C docs run build",
"build:lib": "tsc",
"clean": "rimraf dist *.tsbuildinfo",
"copy": "copyfiles -a -u 1 -V src/**/*.css dist",
"dev": "run-s clean dev:lib",
"dev:docs": "pnpm -C docs run dev",
"dev:lib": "tsc-watch --onSuccess \"npm run copy\"",
"lint": "eslint .",
"prepare": "husky",
"release": "run-s release:check release:publish",
"release:check": "run-s lint typecheck clean build",
"release:publish": "bumpp && pnpm publish --tag next",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vuepress": "^2.0.0-rc.15"
},
"dependencies": {
"@types/qrcode": "^1.5.5",
"@vuepress/helper": "^2.0.0-rc.57",
"deepmerge": "^4.3.1",
"qrcode": "^1.5.4",
"vue": "^3.5.12"
},
"devDependencies": {
"@ntnyq/eslint-config": "^3.1.1",
"@ntnyq/prettier-config": "^1.21.3",
"@types/node": "^22.8.1",
"bumpp": "^9.7.1",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.1",
"pnpm": "^9.12.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"vuepress": "^2.0.0-rc.18"
},
"prettier": "@ntnyq/prettier-config",
"nano-staged": {
"*.{js,ts,cjs,mjs,vue,yml,yaml,md,json}": "eslint --fix"
}
}