-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "@goanyapi/cli",
"version": "0.1.0",
"description": "Official GoAnyAPI CLI for humans and AI agents",
"keywords": [
"goanyapi",
"cli",
"api",
"oauth",
"seo",
"ai-agent"
],
"homepage": "https://goanyapi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/GoAnyAPI/goanyapi-cli.git"
},
"bugs": {
"url": "https://github.com/GoAnyAPI/goanyapi-cli/issues"
},
"type": "module",
"bin": {
"goanyapi": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"README.zh.md"
],
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts",
"check": "pnpm typecheck && pnpm test && pnpm build",
"release": "node scripts/release.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.12.1"
}