-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.65 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
{
"name": "vitepress-plugin-moss",
"version": "1.0.0-beta.2",
"description": "Moss semantic search plugin for VitePress",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./Search.vue": "./Search.vue",
"./types": "./types.ts"
},
"files": [
"dist",
"Search.vue",
"SearchButton.vue",
"types.ts",
"MossLogo_Dark_Icon.png"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"documentation:build": "pnpm build && cd demo-site && pnpm install && vitepress build documentation",
"test": "vitest run"
},
"peerDependencies": {
"vite": ">=5.0.0",
"vitepress": ">=1.0.0"
},
"dependencies": {
"@moss-dev/moss-web": "^1.0.0",
"@moss-tools/md-indexer": "^1.0.0-beta.3",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"focus-trap": "^8.0.1",
"obug": "^1.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@types/node": "^20.19.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/language-core": "^3.2.7",
"typescript": "^5.0.0",
"vite": "^8.1.4",
"vite-plugin-dts": "^5.0.0",
"vitepress": "^1.5.0",
"vitest": "^3.1.1",
"vue": "^3.5.0"
},
"keywords": [
"vitepress",
"plugin",
"moss",
"search",
"semantic-search"
],
"license": "MIT",
"author": "",
"directories": {
"doc": "docs"
}
}