-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.68 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@tigrisdata/cli",
"version": "0.0.1",
"description": "Command line interface for Tigris object storage",
"type": "module",
"exports": {
".": {
"import": "./dist/cli.js"
}
},
"bin": {
"tigris": "./dist/cli.js",
"t3": "./dist/cli.js"
},
"files": [
"dist",
"postinstall.cjs",
"README.md",
"SKILL.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --noEmit && tsup",
"dev": "export $(grep -v '^#' .env.test | xargs) && (tsc --noEmit --watch --preserveWatchOutput & tsup --watch)",
"cli": "export $(grep -v '^#' .env.test | xargs) && node dist/cli.js",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run --exclude test/cli.test.ts",
"test:watch": "vitest",
"test:all": "vitest run",
"test:integration": "vitest run test/cli.test.ts",
"publint": "publint",
"updatedocs": "tsx scripts/update-docs.ts",
"postinstall": "node postinstall.cjs",
"generate:registry": "tsx scripts/generate-registry.ts",
"build:binary": "npm run generate:registry && tsc --noEmit -p tsconfig.binary.json && tsx scripts/build-binaries.ts",
"build:binary:current": "npm run generate:registry && tsc --noEmit -p tsconfig.binary.json && bun build src/cli-binary.ts --compile --outfile=bin/tigris",
"dev:binary": "npm run generate:registry && tsc --noEmit --watch --preserveWatchOutput -p tsconfig.binary.json & bun build src/cli-binary.ts --compile --watch --outfile=bin/tigris",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"keywords": [
"cli",
"object",
"storage",
"tigris",
"blob"
],
"author": "Tigris Data",
"repository": {
"type": "git",
"url": "git+https://github.com/tigrisdata/cli.git"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"release",
{
"name": "main",
"prerelease": "beta",
"channel": "beta"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"type": "refactor",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/github",
"@semantic-release/npm"
]
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.1038.0",
"@smithy/shared-ini-file-loader": "^4.4.9",
"@tigrisdata/iam": "^2.1.1",
"@tigrisdata/storage": "^3.4.0",
"commander": "^14.0.3",
"enquirer": "^2.4.1",
"jose": "^6.2.3",
"open": "^11.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.11",
"conventional-changelog-conventionalcommits": "^9.3.1",
"dotenv": "^17.4.2",
"eslint": "^10.2.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"publint": "^0.3.18",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
}
}