-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "vuepress-plugin-meilisearch2",
"description": "Added the meilisearch search plugin to Vuepress2.x",
"version": "0.5.1",
"main": "lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run bundle && npm run copy",
"bundle": "tsup",
"copy": "cpx \"src/**/*.{vue,svg,js,css}\" lib",
"release": "npm publish --access=public"
},
"author": "JQiue",
"repository": {
"type": "git",
"url": "git+https://github.com/JQiue/vuepress-plugin-meilisearch2.git"
},
"bugs": {
"url": "https://github.com/JQiue/vuepress-plugin-meilisearch2/issues"
},
"keywords": [
"vuepress",
"vuepress-plugin",
"meilisearch",
"vuepress-next"
],
"license": "MIT",
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "^0.2.4",
"@vuepress/utils": "2.0.0-rc.2",
"cpx2": "^7.0.1",
"ts-node": "^10.9.2",
"tsconfig-vuepress": "^4.5.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vuepress": "2.0.0-rc.9"
}
}