-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "coders-bot-js",
"version": "0.0.1",
"description": "Coders Community Discord Server Official Bot",
"repository": "https://github.com/Coders-Community-BR/CodersBotJS.git",
"author": {
"name": "Coders Community",
"url": "https://github.com/orgs/Coders-Community-BR"
},
"contributors": [
{
"email": "igor@gargantas.org",
"name": "Igor M. Pereira",
"url": "https://github.com/Igor-MPereira"
},
{
"email": "bolaknt@gmail.com",
"name": "yxqsnz",
"url": "https://github.com/yxqsnz"
}
],
"license": "MIT",
"private": true,
"dependencies": {
"discord-buttons": "^4.0.0",
"discord.js": "13",
"dotenv": "^10.0.0",
"linq4js": "^2.2.3"
},
"devDependencies": {
"@types/node": "^16.4.4",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.4.0-beta"
},
"scripts": {
"build": "node -e \"const f=require('fs');const p=require('path');f.rm(p.resolve(process.cwd(),'dist'),{force:!0,recursive:!0,retryDelay:1e3,maxRetries:3},()=>{})\"&&tsc --project tsconfig.build.json&&cd build-config&&node build.js",
"dev": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules index.ts",
"cpuprofile": "tsc --generateCpuProfile tsc-output.cpuprofile"
},
"engines": {
"node": ">=12.x.x"
}
}