-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 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": "modrinth-api-types",
"version": "1.1.0",
"description": "Full typings for the Modrinth REST API",
"homepage": "https://api-types.noderinth.dev",
"keywords": [
"modrinth",
"modrinth api",
"minecraft",
"modded-minecraft",
"modded-mc",
"labrinth",
"labrinth-api"
],
"exports": {
"./v2": {
"import": "./v2.mjs",
"require": "./v2.js",
"types": "./v2.d.ts"
},
"./payloads": {
"types": "./payloads/index.d.ts",
"require": "./payloads/index.js",
"import": "./payloads/index.mjs"
},
"./payloads/v*": {
"types": "./payloads/v*/index.d.ts",
"require": "./payloads/v*/index.js",
"import": "./payloads/v*/index.mjs"
},
"./rest": {
"types": "./rest/index.d.ts",
"require": "./rest/index.js",
"import": "./rest/index.mjs"
},
"./rest/v*": {
"types": "./rest/v*/index.d.ts",
"require": "./rest/v*/index.js",
"import": "./rest/v*/index.mjs"
}
},
"bugs": {
"url": "https://github.com/Noderinth/modrinth-api-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Noderinth/modrinth-api-types.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Noderinth"
}
],
"license": "ISC",
"author": "Harvle",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^22.15.14",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}