-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3 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
89
90
91
92
93
94
95
{
"name": "vuepress-plugin-full-text-search2",
"version": "0.5.1",
"description": "VuePress v2 plugin that adds full-text search box.",
"files": [
"lib"
],
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "npm run -s clean",
"build": "npm run bundle && npm run copy",
"bundle": "tsup",
"copy": "cpx \"src/**/*.{vue,svg}\" lib",
"clean": "rimraf .nyc_output lib coverage",
"lint": "eslint .",
"eslint-fix": "npm run lint -- --fix",
"format:docs": "prettier README.md --write",
"test": "mocha --require ts-node/register \"tests/**/*.ts\" --reporter dot --timeout 60000",
"cover": "nyc --reporter=lcov npm run test",
"debug": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot",
"update-snap": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot --update",
"preversion": "npm run lint && npm test",
"make-alias-package": "node ./scripts/make-alias-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ota-meshi/vuepress-plugin-full-text-search2.git"
},
"keywords": [
"vuepress",
"vuepress-plugin",
"full-text-search",
"vuepress-next"
],
"author": "Yosuke Ota",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ota-meshi/vuepress-plugin-full-text-search2/issues"
},
"homepage": "https://github.com/ota-meshi/vuepress-plugin-full-text-search2#readme",
"dependencies": {
"@vuepress/client": "^2.0.0-beta.29",
"@vuepress/core": "^2.0.0-0",
"@vuepress/utils": "^2.0.0-0",
"chokidar": "^3.5.2",
"htmlparser2": "^9.0.0",
"vue": "^3.2.0"
},
"peerDependencies": {
"vuepress": "2.0.0-rc.8"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"@ota-meshi/eslint-plugin": "^0.17.5",
"@types/chai": "^4.2.22",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^4.3.4",
"cpx2": "^8.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-json-schema-validator": "^5.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-node-dependencies": "^0.12.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-regexp": "^2.0.0",
"eslint-plugin-vue": "^9.0.0",
"mocha": "^11.0.0",
"mocha-chai-jest-snapshot": "^1.1.3",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"ts-node": "^10.4.0",
"tsconfig-vuepress": "^5.0.0",
"tsup": "^8.0.0",
"typescript": "~5.7.0",
"typescript-eslint": "^8.0.0",
"vue-eslint-parser": "^9.0.0",
"vuepress": "^2.0.0-rc.8"
}
}