-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "mindustry.js",
"description": "A library that allows you to interact with mindustry servers.",
"version": "0.1.2",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"author": {
"name": "Andrew Antsiferov",
"url": "https://github.com/summetdev",
"email": "[email protected]"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "yarn install && yarn build:tsc",
"build:tsc": "tsc",
"build:publish": "yarn build && yarn publish",
"env": "cross-env NODE_PATH=./src",
"eslint": "eslint --cache src"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-plugin-import": "^2.22.0",
"typescript": "^4.1.3"
},
"keywords": [
"mindustry",
"js",
"javascript",
"library",
"server"
]
}