-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "gw2api",
"version": "1.0.0",
"description": "An api client for the Guild Wars 2 API",
"main": "dist/index.js",
"type": "module",
"repository": "https://github.com/Huijiro/gw2API",
"scripts": {
"lint": "eslint .",
"test": "vitest",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"build": "tsc"
},
"author": "Huijiro",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.2",
"prettier-plugin-jsdoc": "^1.3.0",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3",
"utility-types": "^3.10.0",
"vitest": "^1.2.0"
}
}