-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
{
"name": "bfportal-grpc-bf6",
"version": "1.0.17",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json && copyfiles -u 1 src/**/*.js dist/cjs/",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json && copyfiles -u 1 src/**/*.js dist/esm/",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js && copyfiles -u 1 src/**/*.js dist/umd/",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json && copyfiles -u 1 src/**/*.js dist/types/",
"test": "jest --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/community-network/bfportal-grpc.git"
},
"author": "Community network",
"license": "MIT",
"bugs": {
"url": "https://github.com/community-network/bfportal-grpc/issues"
},
"homepage": "https://gametools.network/",
"dependencies": {
"long": "^5.3.2",
"nice-grpc-web": "^3.3.9"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"copyfiles": "^2.4.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"grpc-tools": "^1.13.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"pinst": "^3.0.0",
"prettier": "^3.6.2",
"protobufjs": "^7.5.4",
"ts-jest": "^29.4.4",
"ts-loader": "^9.5.4",
"ts-proto": "^2.8.3",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"xhr2": "^0.2.1"
},
"files": [
"dist",
"proto"
]
}