forked from RohanAdwankar/cgpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "cgpu",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "https://github.com/RohanAdwankar/cgpu.git"
},
"description": "Free cloud GPUs for learning CUDA",
"type": "module",
"bin": {
"cgpu": "./dist/src/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"diagnostics": "tsx src/index.ts status",
"setup-config": "tsx scripts/setup-config.ts",
"test": "vitest run",
"lint": "tsc --noEmit",
"start": "node dist/src/index.js",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"keywords": [
"colab",
"gpu",
"cuda",
"cli"
],
"author": "Rohan Adwankar",
"license": "Apache-2.0",
"dependencies": {
"chalk": "5.3.0",
"commander": "12.1.0",
"env-paths": "2.2.1",
"google-auth-library": "10.4.1",
"node-fetch": "3.3.2",
"open": "9.1.0",
"ora": "8.0.1",
"ws": "^8.18.3",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.11.25",
"@types/ws": "8.5.10",
"ts-node": "10.9.2",
"tsx": "^4.20.6",
"typescript": "5.4.3",
"vitest": "^1.6.1"
}
}