-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@aresrpg/aresrpg-sdk",
"version": "5.0.23",
"description": "General SDK to interract with AresRPG",
"type": "module",
"scripts": {
"lint": "eslint . && prettier . --check && npm run typecheck",
"typecheck": "tsc --build",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags",
"test": "node -r dotenv/config --test **/*.test.js"
},
"engines": {
"node": ">=21.0.0"
},
"exports": {
"./sui": {
"import": "./src/sui.js",
"types": "./types/sui.d.ts"
},
"./chunk": {
"import": "./src/chunk.js",
"types": "./types/chunk.d.ts"
},
"./fight": {
"import": "./src/fight_board.js",
"types": "./types/fight_board.d.ts"
},
"./experience": {
"import": "./src/experience.js",
"types": "./types/experience.d.ts"
},
"./stats": {
"import": "./src/stats.js",
"types": "./types/stats.d.ts"
},
"./spells": "./src/spells.json",
"./types": "./types.d.ts",
"./items": {
"import": "./src/items.js",
"types": "./types/items.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aresrpg/aresrpg-sdk.git"
},
"keywords": [
"aresrpg",
"mmorpg",
"minecraft"
],
"author": "AresRPG's Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/aresrpg/aresrpg-sdk/issues"
},
"homepage": "https://github.com/aresrpg/aresrpg-sdk#readme",
"dependencies": {
"@hydre/pino-human": "1.3.0",
"alea": "^1.0.1",
"bignumber.js": "^9.1.2",
"iterator-helper": "^1.3.4",
"lru-cache": "^11.0.2",
"pino": "^9.5.0",
"spiralloop": "^1.0.2"
},
"peerDependencies": {
"@mysten/kiosk": "^0.9.33",
"@mysten/sui": "^1.17.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "^6.6.0",
"husky": "^4.3.8",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}