-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "sheets-cli",
"version": "1.0.2",
"module": "src/cli.ts",
"license": "MIT",
"author": "Gordon Mickel <gordon@mickel.tech>",
"repository": {
"type": "git",
"url": "https://github.com/gmickel/sheets-cli"
},
"bugs": {
"url": "https://github.com/gmickel/sheets-cli/issues"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/bun": "latest",
"lefthook": "^2.0.12",
"@typescript/native-preview": "^7.0.0-dev.20251215.1",
"ultracite": "6.4.1"
},
"peerDependencies": {
"typescript": "^5"
},
"bin": {
"sheets-cli": "./dist/sheets-cli"
},
"scripts": {
"prepare": "lefthook install",
"dev": "bun --hot ./src/cli.ts",
"build": "bun build ./src/cli.ts --compile --outfile ./dist/sheets-cli",
"build:deterministic": "bun build ./src/cli.ts --compile --no-compile-autoload-dotenv --no-compile-autoload-bunfig --outfile ./dist/sheets-cli",
"test": "bun test",
"lint": "biome check",
"lint:fix": "biome check --write",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"commander": "^14.0.2",
"googleapis": "^169.0.0"
}
}