-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@therr/tiny-code",
"version": "0.3.0",
"description": "A small, extensible CLI coding agent with interchangeable Anthropic and Gemini models.",
"type": "module",
"bin": {
"tiny-code": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"postpublish": "git push --follow-tags",
"preversion": "npm run typecheck && npm run lint && npm test && npm run build",
"release:beta": "npm version prerelease --preid=beta -m \"release: v%s\" && npm publish --tag beta --access public",
"release:patch": "npm version patch -m \"release: v%s\" && npm publish --access public",
"release:minor": "npm version minor -m \"release: v%s\" && npm publish --access public",
"release:major": "npm version major -m \"release: v%s\" && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rili-live/tiny-code.git"
},
"homepage": "https://github.com/rili-live/tiny-code#readme",
"bugs": {
"url": "https://github.com/rili-live/tiny-code/issues"
},
"keywords": [
"cli",
"coding-agent",
"agent",
"anthropic",
"claude",
"gemini",
"llm"
],
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@anthropic-ai/sdk": "^0.69.0",
"@google/genai": "^1.30.0",
"gray-matter": "^4.0.3",
"picocolors": "^1.1.1",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.0",
"tsup": "^8.3.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.0"
}
}