-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "rclone-openapi",
"version": "1.73.0",
"keywords": [
"rclone",
"openapi",
"spec",
"types"
],
"author": "https://github.com/rclone-ui",
"license": "MIT",
"description": "OpenAPI specification for the Rclone RC API.",
"main": "openapi.json",
"types": "types.d.ts",
"exports": {
".": {
"types": "./types.d.ts",
"import": "./openapi.json",
"require": "./openapi.json",
"default": "./openapi.json"
},
"./openapi.json": {
"import": "./openapi.json",
"require": "./openapi.json",
"default": "./openapi.json"
}
},
"files": [
"openapi.json",
"types.d.ts",
"openapi.yaml"
],
"scripts": {
"gen:json": "npx @redocly/cli bundle openapi.yaml -o openapi.json --ext json",
"gen:types": "openapi-typescript openapi.yaml -o types.d.ts",
"gen": "npm run gen:json && npm run gen:types",
"bump": "npm version patch --no-git-tag-version",
"pub": "npm run gen && npm publish"
},
"devDependencies": {
"@redocly/cli": "^1.34.5",
"openapi-typescript": "^7.10.1",
"yaml": "^2.8.2"
}
}