-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "@decodo/cli",
"version": "0.1.4",
"description": "Official CLI for the Decodo APIs",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Decodo/cli.git"
},
"homepage": "https://github.com/Decodo/cli#readme",
"bugs": {
"url": "https://github.com/Decodo/cli/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"decodo": "./build/esm/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "ultracite check",
"fix": "ultracite fix",
"test": "vitest run",
"test:watch": "vitest",
"pretest": "pnpm build",
"prepack": "pnpm build"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.33.3",
"dependencies": {
"@decodo/sdk-ts": "^2.1.1",
"commander": "^14.0.0",
"env-paths": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/json-schema": "^7.0.15",
"@types/node": "^25.7.0",
"typescript": "^5.3.3",
"ultracite": "7.7.0",
"vitest": "^3.2.0"
}
}