-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "curseforge-api",
"version": "1.3.0",
"private": true,
"description": "An easy to use library to help you consume the CurseForge Core API",
"keywords": [
"curse",
"forge",
"core",
"api",
"curseforge",
"modding",
"mods"
],
"repository": {
"type": "git",
"url": "https://github.com/minimusubi/curseforge-api.git"
},
"license": "MIT",
"author": "minimusubi",
"type": "module",
"main": "./index.js",
"scripts": {
"build": "rm -rfd dist && npx tsc --project .",
"docs": "npx typedoc src/index.ts",
"pack": "npm run build && node prepare-package.js && npm pack ./dist",
"test": "npx jest --setupFiles dotenv/config",
"watch": "npx tsc --watch --project ."
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"semantic-release": "^21.0.0",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.9",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^5.0.2"
}
}