-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@iggy.rs/sdk",
"type": "module",
"version": "1.0.3",
"description": "Official nodejs iggy.rs binary client",
"keywords": [
"iggy",
"iggy-rs",
"driver",
"client",
"protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/iggy-rs/iggy-node-client.git"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"homepage": "https://iggy.rs",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.d.ts"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"test": "node --import ./register-test.js --test --experimental-test-coverage './src/**/*.test.ts'",
"test:e2e": "node --import ./register-test.js --test --experimental-test-coverage --test-force-exit './src/e2e/*.e2e.ts'",
"clean": "rm -Rf dist/",
"lint": "eslint src/**/*.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"author": "github.com/T1B0",
"license": "MIT",
"dependencies": {
"debug": "4.3.7",
"generic-pool": "3.9.0",
"uuidv7": "1.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@swc-node/register": "1.10.9",
"@types/debug": "4.1.12",
"@types/node": "22.9.3",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"typescript-eslint": "^8.16.0"
}
}