-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "all-the-public-replicate-models",
"description": "Metadata for all the public models on Replicate, bundled up into an npm package",
"repository": "https://github.com/replicate/all-the-public-replicate-models",
"version": "1.608.0",
"devDependencies": {
"chai": "^4.3.10",
"lodash-es": "^4.17.21",
"mocha": "^10.2.0",
"replicate": "^0.20.1"
},
"type": "module",
"main": "index.mjs",
"exports": {
".": "./index.mjs",
"./lite": "./lite.mjs",
"./stats": "./stats.mjs"
},
"files": [
"cli.js",
"index.mjs",
"lite.mjs",
"stats.mjs",
"models.json",
"models-lite.json",
"stats.json"
],
"scripts": {
"build": "node script/build.js && node script/stats.js",
"prepack": "node script/prepack.js",
"postpack": "node script/postpack.js",
"test": "mocha test.js"
},
"engines": {
"node": ">=18"
},
"bin": {
"all-the-public-replicate-models": "cli.js",
"all-the-replicate-models": "cli.js",
"replicate-models": "cli.js"
}
}