-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "runescape",
"version": "0.10.6",
"description": "A library to interact with the non-existent RuneScape API.",
"keywords": ["RuneScape", "Jagex", "RS3"],
"repository": {
"type": "git",
"url": "git+https://github.com/Jiralite/RuneScape.git"
},
"license": "MIT",
"author": "Jiralite",
"type": "module",
"exports": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"files": ["distribution"],
"scripts": {
"build": "tsup",
"test": "tsc --noEmit",
"lint": "biome check",
"format": "biome check --write",
"prepack": "pnpm run build && pnpm run lint",
"update": "pnpm update --interactive --latest && pre-commit autoupdate"
},
"dependencies": {
"dayjs": "^1.11.10"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.9.1",
"tsup": "^8.3.5",
"typescript": "^5.3.3"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": ">=9.14.2",
"onFail": "error"
}
}
}