-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "@grafana/tsbackend",
"version": "1.0.0",
"description": "Wrapper for writing a backend plugin in nodejs",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"pkg": {
"assets": [
"/**/backend.proto"
]
},
"bin": {
"grafana-tsbackend": "./bin/grafana-tsbackend"
},
"scripts": {
"build": "tsc --declaration",
"build:protobuf": "./build.sh",
"test": "",
"dev": "tsc --declaration",
"watch": ""
},
"author": "Stephanie Closson",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/data": "7.4.2",
"@grafana/toolkit": "7.4.2",
"@grafana/runtime": "7.4.2",
"@grafana/ui": "7.4.2",
"@types/lodash": "4.14.168",
"grpc": "^1.24.3",
"google-protobuf": "^3.12.2",
"grpc-tools": "^1.9.0",
"typescript": "3.7.5",
"protoc-gen-grpc": "1.4.0",
"@grafana/tsconfig": "^1.0.0-rc1",
"request-promise-native": "1.0.8",
"@types/request-promise-native": "1.0.14",
"tslib":" ^2.0.0"
},
"engines": {
"node": ">=12 <=14"
}
}