-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
49
50
51
52
53
{
"name": "battlefield6-api",
"version": "1.0.4",
"description": "This is an basic API to work with DICE's Portal-Server (Battlefield 6).",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"proto",
"generator.js",
"README.md"
],
"scripts": {
"build": "tsc",
"proto:generate": "node ./tools/generator.js",
"proto:watch": "nodemon --watch proto --exec npm run proto:generate",
"prepare": "npm run proto:generate && npm run build",
"prepublishOnly": "npm run build",
"docs": "npm run docs:generate && cd ./.wiki/ && git add . && git commit -m \"Automatical update Wiki\" && git push && cd ../",
"docs:generate": "node ./tools/documentation.js"
},
"repository": "battlefield6/API",
"keywords": [
"dice",
"battlefield",
"bf6",
"grpc",
"protobuf",
"portal"
],
"devDependencies": {
"@types/google-protobuf": "^3.15.12",
"@types/node": "^24.7.2",
"dotenv": "^16.4.7",
"google-protobuf": "^3.21.4",
"nodemon": "^3.1.10",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"ts-proto": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@bufbuild/protobuf": "^2.9.0",
"grpc-web": "^2.0.2",
"long": "^5.3.2"
}
}