forked from oldschoolgg/oldschooljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "oldschooljs",
"version": "2.6.0",
"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": {
"test": "tsc --noEmit -p src && concurrently \"yarn test:lint\" \"yarn test:unit\" \"tsc --noEmit -p test\"",
"test:unit": "vitest run --coverage",
"build": "tsc -p src && tsx scripts/minifyDist.ts",
"prepare": "tsx scripts/prepare",
"dev": "yarn prepare && yarn lint && yarn build && yarn test",
"lint": "biome check --write --diagnostic-level=error",
"test:lint": "biome check --diagnostic-level=error"
},
"dependencies": {
"e": "^0.2.33",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.1",
"@vitest/coverage-v8": "^1.6.0",
"concurrently": "^8.2.2",
"deep-object-diff": "^1.1.9",
"deepmerge": "4.3.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"keywords": ["runescape"],
"files": ["dist", "package.json"],
"packageManager": "yarn@4.3.1"
}