@anakonn/ankk 0.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +103 -0
- package/dist/index.js +17512 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@anakonn/ankk",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "Bun-first CLI for the ankk public API.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"ankk": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": "./dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md",
|
|
15
|
+
"package.json"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public",
|
|
19
|
+
"registry": "https://registry.npmjs.org/"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"bun": ">=1.3.0"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "bun build src/entry/index.ts --target=bun --outdir=dist",
|
|
26
|
+
"check": "tsc --noEmit",
|
|
27
|
+
"coverage:openapi": "bun src/coverage-check.ts",
|
|
28
|
+
"dev": "bun run src/entry/index.ts",
|
|
29
|
+
"format": "prettier --write .",
|
|
30
|
+
"generate:openapi": "bun run generate:openapi:snapshot && bun run generate:openapi:types && bun run generate:openapi:format",
|
|
31
|
+
"generate:openapi:format": "prettier --write src/generated/api-public-openapi.json src/generated/api-public-schema.ts",
|
|
32
|
+
"generate:openapi:live": "bun run src/entry/index.ts openapi pull && bun run generate:openapi:types && bun run generate:openapi:format",
|
|
33
|
+
"generate:openapi:snapshot": "bun ../../scripts/api-public/generate-openapi-snapshot.ts",
|
|
34
|
+
"generate:openapi:types": "openapi-typescript src/generated/api-public-openapi.json -o src/generated/api-public-schema.ts",
|
|
35
|
+
"lint": "tsc --noEmit",
|
|
36
|
+
"pack:smoke": "bun run build && npm pack --dry-run",
|
|
37
|
+
"prepack": "bun run build",
|
|
38
|
+
"smoke:dogfood": "bun src/dogfood-smoke.ts",
|
|
39
|
+
"test": "bun test"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"commander": "^14.0.3",
|
|
43
|
+
"openapi-fetch": "^0.15.0",
|
|
44
|
+
"zod": "^4.4.3"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@repo/tsconfig": "workspace:*",
|
|
48
|
+
"openapi-typescript": "^7.10.1"
|
|
49
|
+
}
|
|
50
|
+
}
|