-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "@noction/vue-use-flexsearch",
"type": "module",
"version": "1.0.5",
"description": "Vue wrapper for Flexsearch",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "[email protected]",
"homepage": "https://github.com/Noction/vue-use-flexsearch",
"bugs": "https://github.com/Noction/vue-use-flexsearch/issues",
"repository": {
"type": "git",
"url": "https://github.com/Noction/vue-use-flexsearch"
},
"files": [
"dist"
],
"keywords": [
"vue",
"composable",
"search",
"flexsearch"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"build:watch": "npm run build -- --watch",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"type:check": "vue-tsc --noEmit",
"prepare": "npx simple-git-hooks"
},
"author": "",
"dependencies": {
"flexsearch": "0.7.43"
},
"peerDependencies": {
"flexsearch": "0.7.43",
"vue": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@faker-js/faker": "^9.4.0",
"@types/flexsearch": "0.7.6",
"@vitest/coverage-v8": "^3.0.2",
"eslint": "^9.18.0",
"lint-staged": "^15.4.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.2",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
}
}