-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "@vqueue/sdk",
"version": "0.1.6",
"description": "A toolset for Virtual Queue integrations in Node.js",
"keywords": [
"queue",
"sdk",
"nodejs"
],
"homepage": "https://github.com/animus-coop/virtual-queue-nodejs-sdk#readme",
"bugs": {
"url": "https://github.com/animus-coop/virtual-queue-nodejs-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animus-coop/virtual-queue-nodejs-sdk.git"
},
"license": "MIT",
"author": "Michel Romero",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.31.0",
"@jest/globals": "^30.0.4",
"@types/node": "^24.0.14",
"babel-jest": "^30.0.4",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.7",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jiti": "^2.4.2",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
},
"dependencies": {
"zod": "^4.0.5"
}
}