@stanterprise/protobuf 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +92 -2514
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +75 -2496
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- package/LICENSE +0 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stanterprise/protobuf",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Generated Protobuf code",
|
|
5
|
-
"main": "dist/index.
|
|
5
|
+
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
@@ -10,19 +10,20 @@
|
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsup",
|
|
13
|
-
"dev": "tsup
|
|
13
|
+
"dev": "tsup --watch",
|
|
14
14
|
"prepublishOnly": "npm run generate",
|
|
15
15
|
"prepare": "npm run generate",
|
|
16
|
-
"generate": "npx protoc --ts_out ./lib --ts_opt long_type_string --ts_opt optimize_code_size --proto_path
|
|
16
|
+
"generate": "mkdir -p lib && npx protoc --ts_out ./lib --ts_opt long_type_string --ts_opt optimize_code_size --proto_path ./protobuf/testsystem ./protobuf/testsystem/*.proto && node scripts/gen-index.js"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/stanterprise/
|
|
20
|
+
"url": "git+https://github.com/stanterprise/proto-ts.git"
|
|
21
21
|
},
|
|
22
22
|
"author": "Stanislav Fedii",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@grpc/grpc-js": "^1.0.0",
|
|
26
|
+
"@protobuf-ts/runtime": "^2.11.1",
|
|
26
27
|
"google-protobuf": "^3.0.0"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
package/LICENSE
DELETED
|
File without changes
|