-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@junwatu/griddb-client",
"version": "1.1.0-beta.1",
"description": "A modern TypeScript client for GridDB Web API with full CRUD operations, cloud support, and comprehensive testing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist coverage",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:connection": "ts-node test-connection.ts",
"test:integration": "ts-node test-integration.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"example": "ts-node examples/basic-usage.ts"
},
"keywords": [
"griddb",
"griddb-client",
"griddb-cloud",
"database",
"nosql",
"time-series",
"iot",
"client",
"typescript",
"crud",
"web-api",
"sdk"
],
"author": "Equan P. (@junwatu)",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"eslint": "^10.0.3",
"happy-dom": "^20.8.4",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"dotenv": "^17.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junwatu/griddb-client.git"
},
"bugs": {
"url": "https://github.com/junwatu/griddb-client/issues"
},
"homepage": "https://github.com/junwatu/griddb-client#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
}
}