-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.78 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
52
53
{
"name": "@melmoth-the-wanderer/discord-bot-base",
"version": "0.4.0",
"author": "[email protected]",
"license": "ISC",
"description": "Set of common functions to be used in my Discord bots.",
"repository": {
"type": "git",
"url": "https://github.com/Melmoth-the-Wanderer/discord-bot-base.git"
},
"bugs": {
"url": "https://github.com/Melmoth-the-Wanderer/discord-bot-base/issues"
},
"homepage": "https://github.com/Melmoth-the-Wanderer/discord-bot-base/README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf ./dist/ && tsc",
"watch": "tsc --watch",
"format": "prettier --write \"lib/**/*.ts\" \"lib/**/*.js\"",
"lint": "eslint ./lib/**/*.ts",
"test": "jest --config jestconfig.json",
"preversion": "npm i && npm run build && npm test && npm run lint",
"version": "npm run generate-docs && git add docs/ && generate-changelog && git add CHANGELOG.md",
"generate-docs": "rimraf ./docs/ && typedoc --readme none --out docs ./lib/index.ts",
"supabase:generate": "npx openapi-typescript <url_goes_here>/rest/v1/?apikey=<key_goes_here> --output lib/supabase/model.gen.ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"@supabase/supabase-js": "^1.35.7",
"axios": "^0.27.2"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"generate-changelog": "^1.8.0",
"jest": "^29.1.2",
"openapi-typescript": "^5.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
}
}