-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 950 Bytes
/
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
{
"name": "evanw555.js",
"version": "2.0.43",
"description": "Various JavaScript utilities",
"author": "Evan Williams",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "rm -rf ./build && rm ./src/index.ts && cti entrypoint -n ./src -o index.ts && tsc --build",
"test": "mocha -r ts-node/register 'tests/**/*.ts'"
},
"engines": {
"node": ">=16.9.0"
},
"dependencies": {
"chai": "4.3.6",
"canvas": "2.9.1",
"discord.js": "14.10.2"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.0.0",
"mocha": "10.0.0",
"ts-node": "10.9.1",
"typescript": "^4.5.2",
"create-ts-index": "^1.14.0"
}
}