-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
49
50
51
{
"author": "DTrombett",
"description": "A Node.js library to interact with the Clash Royale API",
"homepage": "https://github.com/DTrombett/apiroyale#readme",
"license": "MIT",
"main": "dist/index.js",
"name": "apiroyale",
"types": "dist/index.d.ts",
"version": "2.0.0",
"keywords": [
"nodejs",
"api",
"clash-royale-api",
"clashroyale"
],
"scripts": {
"build": "tsup",
"lint": "eslint src --fix && prettier --write src/**/*.ts",
"precommit": "npm run lint",
"release:major": "npm test && npm run build && npm version major -m \"chore(release): %s\" && git push && npm publish",
"release:minor": "npm test && npm run build && npm version minor -m \"chore(release): %s\" && git push && npm publish",
"release:patch": "npm test && npm run build && npm version patch -m \"chore(release): %s\" && git push && npm publish",
"start": "npm run build && node .",
"test": "tsc --noEmit && eslint src"
},
"engines": {
"node": ">=16.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DTrombett/apiroyale.git"
},
"bugs": {
"url": "https://github.com/DTrombett/apiroyale/issues"
},
"dependencies": {
"@discordjs/collection": "^1.5.1",
"royale-api-types": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"tsup": "^6.1.2",
"typescript": "^5.0.4"
}
}