-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "@amplitude/developer-cli",
"version": "0.1.0",
"description": "amp CLI and developer artifacts for managing Amplitude platform primitives via the Developer API",
"type": "commonjs",
"license": "MIT",
"homepage": "https://github.com/amplitude/developer-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/amplitude/developer-cli.git"
},
"bugs": {
"url": "https://github.com/amplitude/developer-cli/issues"
},
"keywords": [
"amplitude",
"cli",
"amp",
"developer-cli"
],
"bin": {
"amp": "dist/cli.js"
},
"files": [
"dist/**/*",
"openapi/bundled/**/*",
"README.md",
"docs/**/*"
],
"main": "dist/cli.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm clean && tsgo --build tsconfig.build.json && pnpm bundle:cli",
"bundle:cli": "chmod +x dist/cli.js",
"clean": "rimraf ./dist tsconfig.build.tsbuildinfo",
"cli": "tsx src/cli.ts",
"smoke": "bash scripts/smoke.sh",
"smoke:cli": "bash scripts/smoke-cli.sh",
"test": "vitest run",
"test:typescript": "tsgo --project tsconfig.tsc.json --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"chalk": "^4.1.2",
"commander": "^15.0.0",
"open": "^11.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "22.19.17",
"@typescript/native-preview": "7.0.0-dev.20260601.1",
"rimraf": "^3.0.2",
"tsx": "4.7.2",
"typescript": "6.0.3",
"vitest": "^4.1.4"
},
"engines": {
"node": "^22.22.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}