This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "voltare",
"version": "1.0.2",
"description": "Modular and extendable Revolt bot framework",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Snazzah",
"license": "MIT",
"repository": "https://github.com/Dexare/Voltare",
"bugs": {
"url": "https://github.com/Dexare/Voltare/issues"
},
"keywords": [
"api",
"bot",
"revolt chat",
"revolt",
"framework",
"typescript",
"voltare"
],
"funding": {
"url": "https://github.com/sponsors/Snazzah"
},
"scripts": {
"build": "npx rimraf lib && npx tsc",
"build:prepare": "npx shx test -d ./lib || npm run build",
"changelog": "node scripts/changelog",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"gpr": "node scripts/gpr",
"prepare": "npx husky install && npm run build:prepare",
"prepublishOnly": "(npx shx test -d ./lib || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"dependencies": {
"@discordjs/collection": "^0.7.0",
"common-tags": "^1.8.0",
"eventemitter3": "^4.0.7",
"lodash.clone": "^4.5.0",
"lodash.uniq": "^4.5.0",
"node-fetch": "3.2.6",
"revolt-api": "0.5.3-rc.8",
"revolt.js": "^5.2.8"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/lodash.clone": "^4.5.6",
"@types/lodash.uniq": "^4.5.6",
"@types/node": "^17.0.2",
"@types/node-fetch": "2.6.1",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.5.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
}
}