-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.97 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
{
"name": "@prefab-cloud/prefab-cloud-node",
"version": "0.4.9",
"description": "Feature Flags, Live Config, and Dynamic Log Levels",
"main": "dist/prefab.cjs",
"types": "dist/prefab.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/prefab.mjs",
"require": "./dist/prefab.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npx unbuild",
"format": "prettier --cache=/tmp/prefab-cloud-node --write \"**/*.+(js|ts|json)\"",
"lint": "eslint --cache=true --ext .ts .",
"prep": "npm run lint && npm run format && npm run test && npm run build",
"regen-proto": "npx pbjs -t json ${PROTO_ROOT:-..}/prefab-cloud/prefab.proto > src/proto.json && protoc --ts_proto_opt=esModuleInterop=true --ts_proto_opt=forceLong=long --ts_proto_opt=onlyTypes=true --ts_proto_opt=env=node --ts_proto_out=./ --ts_proto_opt=importSuffix=.js -I ${PROTO_ROOT:-..}/prefab-cloud/ prefab.proto && mv prefab.ts src/proto.ts",
"test": "jest --forceExit",
"prepare": "husky install"
},
"keywords": [],
"author": "Jeffrey Chupp",
"license": "ISC",
"devDependencies": {
"bun": "^1.2.12",
"@types/jest": "^29.5.1",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"long": "^5.2.3",
"prettier": "^2.8.8",
"protobufjs-cli": "^1.1.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-proto": "^2.6.1",
"typescript": "^5.0.4",
"yaml": "^2.2.2"
},
"peerDependencies": {
"long": "^5.2.3"
},
"dependencies": {
"@types/eventsource": "^1.1.11",
"eventsource": "^2.0.2",
"murmurhash": "^2.0.1",
"protobufjs": "^7.2.3"
}
}