-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "seekdb-monorepo-root",
"private": true,
"packageManager": "pnpm@9.0.5",
"scripts": {
"build": "pnpm --filter seekdb run build && pnpm --filter '@seekdb/*' run build",
"build:seekdb": "pnpm --filter seekdb run build",
"build:embeddings": "pnpm --filter '@seekdb/*' run build",
"test": "pnpm --filter seekdb run test && pnpm --filter @seekdb/prisma-adapter run test",
"lint": "pnpm -r run lint",
"type-check": "pnpm -r run type-check",
"prettier": "prettier --write .",
"prepare": "husky",
"publish:all": "node scripts/publish.js"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^22.19.7",
"dotenv": "^16.6.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,yml,yaml}": "prettier --write",
"*.{ts,tsx,js,jsx}": "pnpm run lint"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": "git@github.com:oceanbase/seekdb-js.git"
}