-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "kauri",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "./src/index.js",
"types": "./src/typings/index.d.ts",
"scripts": {
"build": "tsc -p ./src/tsconfig.json",
"lint": "eslint ./src --ext .ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -p ./src/tsconfig.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pokemon-URPG/kauri.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pokemon-URPG/kauri/issues"
},
"homepage": "https://github.com/Pokemon-URPG/kauri#readme",
"devDependencies": {
"@types/node": "^18.11.0",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@directus/sdk": "^10.1.4",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"eslint-config-neon": "^0.1.38",
"string-similarity": "^4.0.4",
"undici": "^5.11.0"
},
"eslintConfig": {
"extends": [
"neon/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"root": true,
"env": {
"node": true
}
}
}