-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 953 Bytes
/
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
{
"name": "nodecollect",
"version": "1.0.1",
"description": "A NodeJS wrapper that easily interacts with the FFXIV Collection APIs.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"repository": "https://github.com/c0reme/nodecollect.git",
"author": "c0reme (https://cammy.xyz/)",
"license": "MIT",
"scripts": {
"format": "prettier --write \"{src,tests}/**/*.{mjs,js,ts}\"",
"test": "jest",
"build": "tsup",
"update": "yarn --update-interactive"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.5.4"
},
"files": [
"dist",
"*.md"
],
"engines": {
"node": ">=18"
}
}