-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "poru-example",
"version": "2.0.1",
"description": "An example bot on how to use poru in a basic level",
"main": "index.js",
"dependencies": {
"ascii-table": "^0.0.9",
"discord.js": "^14.0.3",
"dotenv": "^16.0.3",
"ms": "^2.1.3",
"poru": "github:parasop/poru#v4",
"poru-spotify": "github:parasop/poru-spotify"
},
"scripts": {
"start": "node .",
"format": "prettier --write .",
"node-update": "npm i --save-dev node@17 && npm config set prefix=$(pwd)/node_modules/node && export PATH=$(pwd)/node_modules/node/bin:$PATH",
"node-clean": "rm -rf node_modules && rm package-lock.json && npm cache clear --force && npm cache clean --force && npm i",
"node-update-then-clean": "npm run node-update && npm run node-clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasop/poru-example.git"
},
"keywords": [
"poru"
],
"author": "PARAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/parasop/poru-example/issues"
},
"homepage": "https://github.com/parasop/poru-example#readme",
"devDependencies": {
"node": "^17.9.1",
"prettier": "2.7.1"
}
}