This repository was archived by the owner on Feb 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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
{
"name": "@miichom/lodestone",
"version": "0.1.1",
"description": "Typed, async FFXIV Lodestone client with schema-driven API.",
"license": "MIT",
"author": "miichom <hello@cammy.xyz> (https://cammy.xyz/)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "tsup",
"format": "prettier --write .",
"lint": "eslint --ext .ts",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"linkedom": "^0.18.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node20": "^20.1.9",
"@types/node": "^25.3.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sort": "^4.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"terser": "^5.46.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"homepage": "https://gitlab.com/miichom/lodestone-js#readme",
"bugs": {
"url": "https://gitlab.com/miichom/lodestone-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/miichom/lodestone-js.git"
},
"keywords": [
"ffxiv",
"lodestone",
"client",
"typescript",
"async",
"parser"
],
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.28.0"
}