-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "christmas-client-js",
"type": "module",
"version": "0.0.1",
"description": "",
"author": "diamondburned",
"scripts": {
"build-1-proto": "wget -qO christmas.proto https://raw.githubusercontent.com/acmCSUFDev/christmasd/main/christmas.proto",
"build-2-proto": "protoc -I=. --plugin=node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_opt=importSuffix=.js --ts_proto_out=src/christmaspb christmas.proto",
"build-3": "pkgroll",
"build": "npm run build-1-proto && npm run build-2-proto && npm run build-3"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"@types/node": "^20.10.0",
"pkgroll": "^2.0.1",
"prettier": "^3.1.0",
"ts-proto": "^1.164.1",
"typescript": "^5.3.2",
"typescript-language-server": "^4.1.2"
},
"dependencies": {
"@types/ws": "^8.5.10",
"image-js": "^0.35.5",
"node-fetch": "^3.3.2",
"protobufjs": "^7.2.5",
"strict-event-emitter": "^0.5.1",
"ws": "^8.14.2"
}
}