-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (63 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (63 loc) · 1.38 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
{
"name": "create-llm",
"version": "2.2.3",
"description": "The fastest way to start training your own Language Model. Create production-ready LLM training projects in seconds.",
"main": "dist/index.js",
"bin": {
"create-llm": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node dist/index.js test-project --template nano",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"language-model",
"machine-learning",
"deep-learning",
"pytorch",
"gpt",
"transformer",
"training",
"cli",
"scaffold",
"generator",
"nlp",
"ai",
"artificial-intelligence"
],
"author": "Aniket Giri <theaniketgiri@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theaniketgiri/create-llm.git"
},
"bugs": {
"url": "https://github.com/theaniketgiri/create-llm/issues"
},
"homepage": "https://github.com/theaniketgiri/create-llm#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.5",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}