forked from PowerAllay/PowerAllay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "powerallay",
"version": "1.0.0",
"description": "a software for Minecraft: Bedrock Edition written in Typescript",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node .",
"dev": "npx nodemon src/index.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "npx eslint src/**/*.ts --fix",
"format": "prettier --config .prettierrc src/**/*.ts --write",
"format-check": "prettier --config .prettierrc 'src/**/*.ts' --check",
"all": "npm run build && npm run format && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PowerAllay/PowerAllay.git"
},
"keywords": [
"powerallay"
],
"author": "Jacob.G",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/PowerAllay/PowerAllay/issues"
},
"homepage": "https://github.com/PowerAllay/PowerAllay#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@powerallay/bedrock-data": "github:PowerAllay/BedrockData",
"@types/node": "^20.4.2",
"assert": "^2.0.0",
"bedrock-protocol": "^3.30.0",
"events": "^3.3.0",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"prettier": "^3.0.0",
"yaml": "^2.3.1",
"zlib": "^1.0.5"
}
}