-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.92 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
82
{
"name": "zerogpu-cli",
"version": "2.2.0",
"description": "Command-line interface for ZeroGPU.",
"type": "module",
"bin": {
"zerogpu": "dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"release": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"keywords": [
"zerogpu",
"ai-inference",
"edge-inference",
"distributed-inference",
"small-language-models",
"slm",
"nano-language-models",
"openai-compatible",
"iab-classification",
"zero-shot-classification",
"named-entity-recognition",
"gliner",
"pii-detection",
"pii-redaction",
"text-summarization",
"structured-extraction",
"llm-cli",
"ai-cli",
"inference-cli",
"typescript"
],
"author": {
"name": "ZeroGPU",
"email": "hello@zerogpu.ai",
"url": "https://zerogpu.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zerogpu/cli.git"
},
"bugs": {
"url": "https://github.com/zerogpu/cli/issues"
},
"homepage": "https://github.com/zerogpu/cli#readme",
"dependencies": {
"commander": "^12.1.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/node": "^20.14.0",
"@types/update-notifier": "^6.0.8",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}