-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1006 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1006 Bytes
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
{
"name": "iotdb-client-nodejs",
"version": "0.0.7",
"author": "SunWoo Kim <sophianet.sun@gmail.com> ",
"repository": {
"type": "git",
"url": "https://github.com/sophianetSun/iotdb-client-js.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"devDependencies": {
"@creditkarma/thrift-typescript": "^3.7.6",
"@types/bun": "latest",
"@types/thrift": "^0.10.17",
"rimraf": "^6.0.1",
"thrift": "^0.21.0"
},
"peerDependencies": {
"typescript": "^5"
},
"bugs": {
"url": "https://github.com/sophianetSun/iotdb-client-js"
},
"description": "IoTDB nodejs client",
"files": [
"dist",
"READMD.md",
"LICENSE"
],
"keywords": [
"iotdb",
"client"
],
"license": "apache",
"scripts": {
"build:all": "bun prebuild && bun build.ts && cp src/index.d.ts dist",
"prebuild": "rimraf dist",
"dev": "bun src/index.ts",
"test:script": "bun tests/test.ts"
},
"type": "module",
"types": "dist/index.d.ts"
}