| { |
| "name": "iotdb-client-nodejs", |
| "version": "0.1.0", |
| "description": "Apache IoTDB Node.js client with SessionPool and TableSessionPool support", |
| "main": "dist/index.js", |
| "types": "dist/index.d.ts", |
| "scripts": { |
| "build": "tsc && npm run copy:thrift", |
| "copy:thrift": "mkdir -p dist/thrift/generated && cp -r src/thrift/generated/*.js dist/thrift/generated/", |
| "test": "jest", |
| "test:unit": "jest --testPathPattern=tests/unit", |
| "test:e2e": "jest --testPathPattern=tests/e2e", |
| "lint": "eslint src/**/*.ts tests/**/*.ts", |
| "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", |
| "prepublishOnly": "npm run build" |
| }, |
| "keywords": [ |
| "iotdb", |
| "timeseries", |
| "database", |
| "thrift", |
| "apache" |
| ], |
| "author": "", |
| "license": "Apache-2.0", |
| "dependencies": { |
| "thrift": "^0.20.0" |
| }, |
| "devDependencies": { |
| "@types/jest": "^29.5.11", |
| "@types/node": "^20.10.6", |
| "@types/thrift": "^0.10.14", |
| "@typescript-eslint/eslint-plugin": "^6.17.0", |
| "@typescript-eslint/parser": "^6.17.0", |
| "eslint": "^8.56.0", |
| "jest": "^29.7.0", |
| "prettier": "^3.1.1", |
| "ts-jest": "^29.1.1", |
| "typescript": "^5.3.3" |
| }, |
| "engines": { |
| "node": ">=14.0.0" |
| } |
| } |