-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.8 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
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
{
"name": "@tigris/monorepo",
"version": "0.0.1",
"description": "Tigris monorepo for storage SDK",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.4",
"scripts": {
"build": "pnpm -r --if-present run build",
"dev": "pnpm -r --if-present run dev",
"publint": "pnpm -r --if-present run publint",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check",
"check:fix": "biome check --write",
"test": "pnpm -r --if-present run test",
"commit": "cz",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm -r --if-present run build && changeset publish",
"prepare": "husky install",
"clean": "pnpm -r --if-present run clean && rm -rf node_modules/.cache"
},
"keywords": [
"object",
"storage",
"tigris",
"blob",
"ai"
],
"author": "Tigris Data",
"repository": {
"type": "git",
"url": "git+https://github.com/tigrisdata/storage.git"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-empty": [
2,
"never"
]
}
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sqlite3"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^20.0.0",
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"publint": "^0.3.18",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}