-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 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
{
"name": "djs-user",
"version": "0.1.11",
"description": "A Package to Access Discord Reliably as a User",
"main": "dist/index.js",
"scripts": {
"test": "npm run build; echo 'Running Test\n\n'; node test/index.test.js",
"quickTest": "node test/index.test.js",
"build": "echo 'Compiling TypeScript\n'; rm -rf ./dist; npx tsc",
"ci": "npm install; npm update; rm -rf ./node_modules; rm ./package-lock.json; npm install;",
"pretty": "echo 'Prettifying Source'; npx prettier --write ./src/**; echo '\nPrettifying Tests'; npx prettier --write ./test/**/*;",
"docgen": "echo 'Generating Docs Files\n'; rm -rf ./docs; npx typedoc --tsconfig ./tsconfig.json; echo ''",
"ready": "npm run ci; npm run pretty; npm run build; npm run docgen"
},
"author": "TBHGodPro",
"license": "ISC",
"devDependencies": {
"@knodes/typedoc-plugin-code-blocks": "^0.23.1",
"@types/node": "^18.7.23",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.3",
"prettier": "^2.7.1",
"typed-emitter": "^2.1.0",
"typedoc": "^0.23.15",
"typedoc-plugin-replace-text": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@djs-user/collection": "^1.0.2",
"node-fetch": "^2.6.7",
"ws": "^8.9.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}