-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.28 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.28 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
{
"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 | xargs) && (tsc --noEmit --watch --preserveWatchOutput & tsup --watch)",
"cli": "node dist/cli.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run test/utils test/cli-core.test.ts test/specs-completeness.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",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1000.0",
"@aws-sdk/credential-providers": "^3.1000.0",
"@smithy/shared-ini-file-loader": "^4.4.5",
"@tigrisdata/iam": "^1.3.0",
"@tigrisdata/storage": "^2.15.5",
"axios": "^1.13.6",
"commander": "^14.0.3",
"enquirer": "^2.4.1",
"jose": "^6.1.3",
"open": "^11.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.19.11",
"dotenv": "^17.3.1",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}