-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.73 KB
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": "vuepress-plugin-github-linkify",
"version": "1.3.1",
"description": "Adding and fixing GitHub links for Vuepress 2",
"author": {
"name": "Andrey Helldar",
"email": "helldar@dragon-code.pro",
"url": "https://dragon-code.pro"
},
"license": "MIT",
"type": "module",
"keywords": [
"vuepress-plugin",
"vuepress",
"github",
"link",
"linkify",
"github-linkify"
],
"homepage": "https://github.com/TheDragonCode/vuepress-plugin-github-linkify",
"bugs": {
"url": "https://github.com/TheDragonCode/vuepress-plugin-github-linkify"
},
"repository": {
"type": "git",
"url": "https://github.com/TheDragonCode/vuepress-plugin-github-linkify"
},
"exports": {
".": "./lib/node/index.js",
"./package.json": "./package.json"
},
"main": "./lib/node/index.js",
"module": "./lib/node/index.mts",
"types": "./lib/node/index.d.ts",
"files": [
"lib/node"
],
"engines": {
"node": ">=20.9"
},
"scripts": {
"dev": "vite",
"build": "npm run clean && tsc -b tsconfig.json",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"release:version": "git add . && bumpp package.json --commit=\"Release v%s\" --all"
},
"peerDependencies": {
"vite": "^4.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@types/node": "^20.9.2",
"@vuepress/core": "^2.0.0-rc.0",
"@vuepress/utils": "^2.0.0-rc.0",
"bumpp": "^9.0.0",
"rimraf": "^5.0.5",
"tsconfig-vuepress": "^4.0.4",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}