-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "oldschooljs",
"description": "Allows you to interact with the OSRS Hiscores, Wiki, Items, & more.",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./util": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./dist/util": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./dist/util/util": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./dist/meta/types": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./dist/*": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oldschoolgg/oldschooljs.git"
},
"scripts": {
"wipedist": "node -e \"try { require('fs').rmSync('dist', { recursive: true }) } catch(_){}\"",
"test": "yarn build && concurrently \"yarn test:lint\" \"yarn test:unit\" \"tsc --noEmit -p test\"",
"test:unit": "vitest run --coverage",
"build": "yarn wipedist && tsc -p src && node esbuild.cjs",
"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.9.4",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.1",
"@vitest/coverage-v8": "^2.1.5",
"concurrently": "^9.1.0",
"deep-object-diff": "^1.1.9",
"deepmerge": "^4.3.1",
"remeda": "^2.17.3",
"tsx": "^4.19.2",
"typescript": "^5.6.2",
"vitest": "^2.1.5",
"wtf_wikipedia": "^10.3.2"
},
"keywords": ["runescape"],
"files": ["dist"],
"packageManager": "[email protected]",
"engines": {
"node": "20.15.0"
},
"resolutions": {
"esbuild": "0.24.0"
}
}