-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.97 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
{
"name": "@eigr/spawn-sdk",
"version": "1.2.0",
"description": "Spawn Actor model framework implementation for NodeJS/Bun",
"main": "_build/index.js",
"types": "_build/index.d.ts",
"scope": "@eigr",
"private": false,
"engines": {
"node": ">=14.0.0"
},
"files": [
"_build",
"package.json",
"yarn.lock",
"LICENSE",
"README.md"
],
"scripts": {
"tsc": "tsc",
"proto-gen": "protoc --ts_out ./src/protos/ --proto_path protos protos/**/*.proto",
"proto-gen-spawn-protocol": "protoc --ts_out ./src/protos/eigr/functions/protocol/actors --proto_path protos/eigr/functions/protocol/actors protos/eigr/functions/protocol/actors/protocol.proto",
"proto-gen-spawn-actor": "protoc --ts_out ./src/protos/eigr/functions/protocol/actors --proto_path protos/eigr/functions/protocol/actors protos/eigr/functions/protocol/actors/actor.proto",
"proto-gen-spawn-state": "protoc --ts_out ./src/protos/eigr/functions/protocol/actors --proto_path protos/eigr/functions/protocol/actors protos/eigr/functions/protocol/actors/state.proto",
"start": "ts-node --esm --require tsconfig-paths/register index.ts",
"benchmark": "bun run benchmark/benchmark.ts",
"test": "bun test --forceExit --runInBand --detectOpenHandles",
"format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
"bun:build": "bun build --outdir _build"
},
"author": "eigr",
"license": "ISC",
"_moduleAliases": {
"@protos": "dist/protos"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/stoppable": "^1.1.1",
"benny": "^3.7.1",
"bun-types": "^1.0.18",
"jest": "^29.0.3",
"prettier": "^2.8.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.8.1",
"ts-proto": "^1.126.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@protobuf-ts/plugin": "^2.7.0",
"node-fetch-native": "^1.4.1",
"stoppable": "^1.1.0"
}
}