-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 940 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 940 Bytes
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
{
"name": "libcord-template",
"version": "1.0.0",
"description": "Simple example on to get started with libcord",
"keywords": [],
"author": {
"name": "Libcord",
"url": "https://github.com/Libcord"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,yml,md}\"",
"lint": "eslint . --ext .ts,.tsx",
"test:tsc": "tsc --noEmit",
"start": "node ./dist/src/index.js",
"build": "tsc",
"dev": "nodemon ./src/index.ts"
},
"devDependencies": {
"@casper124578/eslint-config": "^4.3.0",
"@types/glob": "^7.2.0",
"@types/node": "^18.6.3",
"eslint": "^8.14.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 120,
"tabWidth": 2
},
"dependencies": {
"dotenv": "^16.0.1",
"glob": "^7.1.7",
"libcord": "^0.3.0"
}
}