-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 KB
/
package.json
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
{
"name": "typerinth",
"version": "0.0.5",
"description": "A TypeScript library for interacting with the Modrinth API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && jest",
"publish": "tsc && npm publish",
"testapp": "tsc && bun ./testapp/index.ts",
"testapp2": "tsc && node ./jstestapp/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KartoffelChipss/Typerinth.git"
},
"bugs": {
"url": "https://github.com/KartoffelChipss/Typerinth/issues"
},
"homepage": "https://github.com/KartoffelChipss/Typerinth#readme",
"author": {
"name": "Jan Straßburger",
"email": "[email protected]",
"url": "https://strassburger.org/"
},
"keywords": [
"modrinth",
"modrinth-api",
"modrinth-ts",
"modrinth-api-ts",
"modrinth.ts",
"modrinth.js",
"typescript",
"api",
"library",
"wrapper",
"minecraft",
"minecraft-mods",
"minecraft-launcher"
],
"license": "MIT",
"readme": "README.md",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/bun": "latest",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.5"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
"node-cache": "^5.1.2"
}
}