forked from oldschoolgg/oldschooljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "oldschooljs",
"version": "2.5.3",
"description": "Allows you to interact with the OSRS Hiscores, Wiki, Items, & more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oldschoolgg/oldschooljs.git"
},
"scripts": {
"prepublishOnly": "yarn build",
"test": "yarn test:run",
"test:unit": "vitest run --coverage",
"test:run": "yarn build && concurrently \"yarn test:lint\" \"yarn test:unit\"",
"build": "tsc -p .",
"dev": "tsc --watch -p .",
"prepareData": "yarn build && yarn prepareData:run",
"prepareData:run": "tsx scripts/prepare",
"prepmon": "yarn build && tsx scripts/prepareMonsters.ts",
"lint": "biome check --apply ./src --diagnostic-level=error",
"test:lint": "biome check ./src --diagnostic-level=error"
},
"dependencies": {
"deepmerge": "^4.3.1",
"e": "^0.2.32",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@oldschoolgg/ts-config": "^0.0.1",
"@types/node": "^14.18.12",
"@types/node-fetch": "^2.6.1",
"@vitest/coverage-v8": "^1.3.1",
"concurrently": "^8.2.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"keywords": [
"osrs",
"runescape",
"oldschool",
"oldschoolrs"
],
"files": [
"dist/*"
]
}