forked from adonisjs-community/ally-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
58
59
60
61
{
"name": "@crafty.gg/ally-minecraft-driver",
"version": "0.0.3",
"description": "Minecraft driver for AdonisJS Ally",
"main": "build/providers/index.js",
"files": [
"build/src",
"build/providers",
"build/standalone.js",
"build/standalone.d.ts",
"build/instructions.md"
],
"scripts": {
"clean": "del build",
"copyfiles": "copyfiles \"instructions.md\" build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile && npm run copyfiles",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"version": "npm run build"
},
"keywords": [
"adonisjs",
"adonis-ally"
],
"author": "crafty.gg",
"license": "MIT",
"devDependencies": {
"@adonisjs/ally": "^4.1.5",
"@adonisjs/core": "^5.9.0",
"@rowboat/prettier": "0.0.3",
"@types/node": "^20.6.4",
"del-cli": "^5.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@adonisjs/ally": "^4.0.0",
"@adonisjs/core": "^5.0.0"
},
"adonisjs": {
"instructionsMd": "./build/instructions.md",
"env": {
"MS_CLIENT_ID": "",
"MS_CLIENT_SECRET": "",
"MS_CLAIM_CALLBACK": ""
},
"types": "ally-minecraft-driver",
"providers": [
"ally-minecraft-driver"
]
},
"prettier": "@rowboat/prettier",
"dependencies": {
"ofetch": "^1.3.3"
}
}