-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 722 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 722 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
{
"name": "craftyapi",
"version": "1.1.0",
"description": "A API wrapper for the Minecraft server controller, CraftyControl.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "node dist/tests/index"
},
"keywords": [
"crafty",
"API",
"JS"
],
"files": [
"src/*",
"tests/*"
],
"author": "SpiderJockey02",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^0.24.0"
}
}