-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@dynamsoft-docs/vitepress-docs",
"version": "0.1.0",
"description": "Dynamsoft docs-site toolkit for VitePress: corporate chrome theme, version switcher and multi-version builds, config factory, and docs bins.",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/dynamsoft-docs/vitepress-docs.git"
},
"bin": {
"ds-docs-build-versions": "./scripts/build-versions.mjs",
"ds-docs-npm-readme": "./scripts/npm-readme.mjs"
},
"files": [
"src",
"types",
"tsconfig.base.json",
"typedoc.base.json",
"README.md"
],
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./config": {
"types": "./types/config.d.mts",
"default": "./src/config.mjs"
},
"./typedoc": {
"types": "./types/typedoc.d.mts",
"default": "./src/typedoc.mjs"
},
"./tsconfig.base.json": "./tsconfig.base.json",
"./typedoc.base.json": "./typedoc.base.json",
"./package.json": "./package.json"
},
"scripts": {
"sync-chrome": "node scripts/sync-chrome.mts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"types": "tsc -p tsconfig.dts.json",
"lint": "vp lint",
"fmt": "vp fmt",
"check": "vp check"
},
"dependencies": {
"markdown-it-github-alerts": "^1.0.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^7.0.0",
"vite-plus": "0.2.7"
},
"peerDependencies": {
"vitepress": "^2.0.0-alpha.19",
"vue": "^3.5.0"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.7"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "^11.11.0",
"onFail": "error"
},
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "error"
}
}
}