-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.06 KB
/
package.json
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
{
"name": "create-replicate",
"version": "1.10.2",
"description": "Generate a simple Node.js project structure for running AI models with Replicate's API",
"main": "index.js",
"bin": {
"create-replicate": "./index.mjs"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md",
"index.mjs",
"lib/models.js",
"lib/token.js",
"package.json",
"template/gitignore",
"template/README.md",
"template/index.js",
"template/package.json"
],
"type": "module",
"scripts": {
"lint": "standard --fix",
"test": "vitest run --silent=false && standard"
},
"repository": "https://github.com/replicate/create-replicate",
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=18"
},
"dependencies": {
"json5": "^2.2.3",
"minimist": "^1.2.8",
"open": "^10.0.3",
"readline-sync": "^1.4.10",
"replicate": "^0.25.2"
},
"devDependencies": {
"standard": "^17.1.0",
"vitest": "^1.2.2"
}
}