-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
60
61
62
63
{
"name": "rclone-sdk",
"version": "1.73.0",
"keywords": [
"rclone",
"rclone-remote-control",
"rclone-sdk",
"rclone-client",
"rclone-api",
"rclone-rcd",
"rclone-rest"
],
"author": "https://github.com/rclone-ui",
"license": "MIT",
"description": "Fully typed SDK for Rclone. Compatible with vanilla Fetch, React Query, and SWR.",
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"lint": "biome check .",
"check": "tsc --noEmit",
"pub:ts": "npm version patch --no-git-tag-version && npm publish",
"gen:rs": "node scripts/progen.cjs",
"pub:rs": "cd rs && cargo publish --allow-dirty",
"all": "npm publish && npm run gen:rs && npm run pub:rs"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"openapi-fetch": "^0.17.0",
"openapi-react-query": "^0.5.4",
"openapi-typescript-helpers": "^0.1.0",
"rclone-openapi": "1.73.4-rev3",
"swr-openapi": "^5.6.0"
},
"devDependencies": {
"@apiture/openapi-down-convert": "^0.14.2",
"@biomejs/biome": "^1.9.4",
"@types/node": "^24.12.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./query": {
"types": "./dist/query.d.ts",
"import": "./dist/query.js"
},
"./swr": {
"types": "./dist/swr.d.ts",
"import": "./dist/swr.js"
}
},
"files": ["dist"],
"sideEffects": false
}