-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.87 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.87 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
{
"name": "fal-endpoint-types",
"version": "1.3.47",
"description": "TypeScript types for Fal AI endpoints generated from the OpenAPI schemas.",
"homepage": "https://github.com/rawpixel-vincent/fal-endpoint-types#readme",
"bugs": {
"url": "https://github.com/rawpixel-vincent/fal-endpoint-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rawpixel-vincent/fal-endpoint-types.git"
},
"license": "MIT",
"author": "rawpixel-vincent",
"type": "module",
"main": "./types/fal/index.d.ts",
"types": "./types/fal/index.d.ts",
"badges": [
{
"url": "https://npmjs.com/package/fal-endpoint-types",
"href": "https://img.shields.io/npm/v/fal-endpoint-types",
"description": "npm version"
},
{
"url": "https://npmjs.com/package/fal-endpoint-types",
"href": "https://img.shields.io/npm/l/fal-endpoint-types",
"description": "license"
},
{
"url": "https://npmjs.com/package/fal-endpoint-types",
"href": "https://img.shields.io/npm/dm/fal-endpoint-types",
"description": "downloads"
}
],
"exports": {
".": {
"types": "./types/fal/index.d.ts"
},
"./endpoints": {
"types": "./types/fal/endpoints/index.d.ts"
}
},
"files": [
"types/**/*.d.ts",
"readme.md",
"LICENSE"
],
"scripts": {
"generate": "node scripts/generate-fal-types.mjs",
"generate:cache": "cross-env CACHE_ENDPOINTS=true node scripts/generate-fal-types.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^3.8.0",
"cross-env": "^10.1.0",
"typescript": ">=5.9.3",
"@types/node": ">=24.1.1"
}
}