-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 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
64
65
66
67
{
"name": "floatplane",
"version": "5.2.4",
"description": "Library for interfacing with the LMG Floatplane.com api",
"type": "module",
"dependencies": {
"cross-env": "^10.1.0",
"got": "^14.6.6",
"openid-client": "^6.8.1"
},
"devDependencies": {
"@inrixia/helpers": "^3.21.2",
"@types/node": "^25.0.9",
"@types/tough-cookie": "^4.0.5",
"@types/tough-cookie-file-store": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"eslint": "^9.39.2",
"openapi-typescript": "^7.10.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "pnpm run build && node ./dist/sanity.js",
"fetchSchema": "openapi-typescript https://jamamp.github.io/FloatplaneAPIDocs/floatplane-openapi-specification-trimmed.json --make-paths-enum --output ./src/lib/apiSchema.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./api": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
},
"./auth": {
"types": "./dist/auth.d.ts",
"import": "./dist/auth.js"
},
"./creator": {
"types": "./dist/creator.d.ts",
"import": "./dist/creator.js"
},
"./user": {
"types": "./dist/user.d.ts",
"import": "./dist/user.js"
},
"./cdn": {
"types": "./dist/cdn.d.ts",
"import": "./dist/cdn.js"
},
"./content": {
"types": "./dist/content.d.ts",
"import": "./dist/content.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inrixia/floatplaneAPI.ts.git"
},
"author": "Inrix",
"license": "ISC",
"bugs": {
"url": "https://github.com/Inrixia/floatplaneAPI.ts/issues"
},
"homepage": "https://github.com/Inrixia/floatplaneAPI.ts#readme"
}