-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "@aresrpg/aresrpg-protocol",
"version": "5.1.7",
"type": "module",
"scripts": {
"proto": "npx buf generate proto",
"lint": "eslint . && prettier . --check && npm run typecheck",
"typecheck": "tsc --build",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags"
},
"engines": {
"node": ">=21.0.0"
},
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
},
"./types": "./types.d.ts"
},
"dependencies": {
"@bufbuild/buf": "^1.45.0",
"@bufbuild/protobuf": "^2.2.0",
"@bufbuild/protoc-gen-es": "^2.2.0",
"spiralloop": "^1.0.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "sceat",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@types/node": "^22.8.1",
"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.10",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aresrpg/aresrpg-protocol.git"
},
"bugs": {
"url": "https://github.com/aresrpg/aresrpg-protocol/issues"
},
"homepage": "https://github.com/aresrpg/aresrpg-protocol#readme",
"description": "Protocol and shared library for AresRPG"
}