-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "stucco-ts-proto-gen",
"version": "0.7.21",
"description": "TypeScript GRPC generated files library for stucco",
"main": "./dist/ts/main.js",
"types": "./dist/ts/main.d.ts",
"type": "commonjs",
"browser": {
"./dist/ts/main.js": "./dist/ts/main.browser.js",
"./dist/ts/main.d.ts": "./dist/ts/main.browser.d.ts"
},
"scripts": {
"clean": "rimraf dist",
"gen": "protoc-task-helper",
"copyproto": "copyfiles proto/**/*.proto dist/",
"copynonts": "copyfiles ts/**/*.js ts/**/*.d.ts ts/**/*.cjs ts/**/*.d.cts dist/",
"build": "npm run clean && npm run gen && tsc && npm run copyproto && npm run copynonts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphqleditor/stucco_proto.git"
},
"author": "Kamil Matyisewicz",
"license": "ISC",
"bugs": {
"url": "https://github.com/graphqleditor/stucco_proto/issues"
},
"homepage": "https://github.com/graphqleditor/stucco_proto#readme",
"dependencies": {
"@grpc/grpc-js": "^1.4.1",
"grpc-web": "^1.3.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.11.2",
"protoc-task-helper": "^1.0.5",
"rimraf": "^3.0.2",
"typescript": "^4.5.0-beta"
},
"private": false,
"publishConfig": {
"tag": "latest",
"access": "public"
}
}