-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
{
"name": "@f3liz/rescript-misskey-api",
"version": "0.8.1",
"description": "ReScript bindings for Misskey API using OpenAPI code generation",
"keywords": [
"misskey",
"rescript",
"bindings",
"activitypub",
"fediverse",
"openapi"
],
"author": "NyanRus",
"license": "MIT",
"type": "module",
"exports": {
"./lib/*": "./lib/*",
"./src/*": "./src/*"
},
"repository": {
"type": "git",
"url": "https://github.com/f3liz-dev/rescript-misskey-api.git"
},
"scripts": {
"build": "rescript && npm run build:ts",
"build:ts": "tsc",
"clean": "rescript clean && rm -rf lib/ts",
"watch": "rescript build -w",
"generate": "node scripts/generate-api.mjs",
"test": "rescript",
"prepublishOnly": "npm run build"
},
"dependencies": {
"ofetch": "^1.5.1",
"sury": "11.0.0-alpha.4"
},
"devDependencies": {
"@f3liz/rescript-autogen-openapi": "^0.7.0",
"rescript": "^12.1.0",
"typescript": "^5.9.3"
},
"files": [
"src/**/*.res",
"src/**/*.resi",
"src/**/*.d.ts",
"src/**/*.mjs",
"src/index.ts",
"lib/es6/src/**/*.res.js",
"lib/es6/src/**/*.mjs",
"lib/ts/**/*",
"scripts/*.mjs",
"rescript.json",
"README.md",
"LICENSE"
]
}