forked from ddoodev/discordoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.11 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
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
72
73
74
{
"name": "discordoo",
"version": "0.10.0",
"description": "Discord bots. Simplified and boosted",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./types/src/index.d.ts",
"scripts": {
"lint": "eslint tests src",
"lint:fix": "eslint tests src --fix",
"test": "jest",
"test:fly": "node dist/on-the-fly/index.js",
"test:fly:nsolid": "npx nsolid-quickstart --exec dist/on-the-fly/index.js",
"build": "ttsc -p tsconfig.json",
"build:publish": "npx rimraf dist types && ttsc -p tsconfig.publish.json",
"build:watch": "ttsc -p tsconfig.json --watch",
"docs": "npx tapok ./docs/docs.json -c typedoc.js -i",
"prepublishOnly": "npm run build:publish",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Mirdukkk",
"email": "dev@ddoo.dev"
},
"contributors": [
"All the amazing people from https://github.com/ddoodev/discordoo/graphs/contributors"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ddoodev/discordoo.git"
},
"homepage": "https://ddoo.dev/",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.0.1",
"@discordoo/providers": "^0.10.0",
"@discordoo/tapok": "2.0.24",
"@types/jest": "26.0.24",
"@types/node": "12.12.70",
"@types/node-ipc": "9.1.4",
"@types/pako": "1.0.1",
"@types/ws": "7.4.1",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"@zerollup/ts-transform-paths": "1.7.18",
"eslint": "7.22.0",
"husky": "6.0.0",
"jest": "27.0.3",
"rimraf": "3.0.2",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"ttypescript": "1.5.13",
"typescript": "4.4.4"
},
"dependencies": {
"@discordoo/collection": "^1.0.15",
"node-ipc": "9.1.4",
"reflect-metadata": "0.1.13",
"serialize-error": "8.1.0",
"tiny-typed-emitter": "2.0.3",
"tslib": "2.3.0",
"typescript-is": "0.19.0",
"undici": "4.4.6",
"ws": "7.4.6"
},
"engines": {
"node": ">=12.18"
},
"publishConfig": {
"access": "public"
}
}