forked from replicate/replicate-javascript
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.23 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
46
47
48
49
50
{
"name": "replicate",
"version": "0.30.2",
"description": "JavaScript client for Replicate",
"repository": "github:replicate/replicate-javascript",
"homepage": "https://github.com/replicate/replicate-javascript#readme",
"bugs": "https://github.com/replicate/replicate-javascript/issues",
"license": "Apache-2.0",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"files": [
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"index.d.ts",
"index.js",
"lib/**/*.js",
"vendor/**/*",
"package.json"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=7.19.0",
"git": ">=2.11.0",
"yarn": ">=1.7.0"
},
"scripts": {
"check": "tsc",
"format": "biome format . --write",
"lint-biome": "biome lint .",
"lint-publint": "publint",
"lint": "npm run lint-biome && npm run lint-publint",
"test": "jest"
},
"optionalDependencies": {
"readable-stream": ">=4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"cross-fetch": "^3.1.5",
"jest": "^29.7.0",
"nock": "^14.0.0-beta.6",
"publint": "^0.2.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
}
}