generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "unsearch",
"type": "module",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "Unsearch smart key:value scope all database search. Compatible with any database.",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbook/unsearch",
"repository": {
"type": "git",
"url": "https://github.com/productdevbook/unsearch.git"
},
"bugs": "https://github.com/productdevbook/unsearch/issues",
"keywords": [
"github search syntax",
"stackoverflow search syntax",
"key value search",
"global search",
"drizzle search"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint . && pnpm typecheck",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.3",
"@vitest/coverage-v8": "^1.2.2",
"bumpp": "^9.3.0",
"drizzle-orm": "^0.29.3",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"postgres": "^3.4.3",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}