-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.57 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
{
"name": "archipelago.js",
"version": "2.0.4",
"description": "A runtime-agnostic and zero dependency TypeScript/JavaScript library for communicating with Archipelago servers.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Zach Parks <zach@alliware.com>",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "rimraf -rf dist && bun build.mjs",
"docs": "typedoc --options typedoc.json",
"lint": "eslint src",
"pack": "pnpm run lint && pnpm run build && pnpm run docs && pnpm pack --pack-destination packs"
},
"homepage": "https://archipelago.js.org",
"repository": "https://github.com/ThePhar/archipelago.js.git",
"bugs": "https://github.com/ThePhar/archipelago.js/issues",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@shipgirl/typedoc-plugin-versions": "^0.2.8",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/bun": "^1.1.13",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.1",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.2.3",
"bun-plugin-dts": "^0.2.4",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}