-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 2.68 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@coveo/push-api-client",
"version": "4.0.7",
"description": "Push API client",
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/definitions/index.d.ts",
"default": "./dist/index.js"
}
},
"type": "commonjs",
"types": "./dist/definitions/index.d.ts",
"dependencies": {
"@coveo/bueno": "^0.46.0",
"@coveo/platform-client": "^54.0.0",
"dayjs": "^1.10.4",
"exponential-backoff": "^3.1.0",
"ts-dedent": "^2.2.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@coveo/semantic-monorepo-tools": "2.5.2",
"@octokit/auth-action": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"conventional-changelog-angular": "8.0.0",
"cz-conventional-changelog": "3.3.0",
"detect-indent": "7.0.1",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"gts": "5.3.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"nodemon": "3.1.7",
"octokit": "4.0.2",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"husky": {
"hooks": {
"commit-msg": "node ./hooks/commit-msg.js",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,html,vue,scss,css,md,yml}": "prettier --write",
"**/*.ts": "eslint --fix"
},
"engines": {
"node": "^18.12.0 || ^20.10.0 || ^22.11.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:dev": "jest --watch",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/localtest.ts\"",
"lint": "prettier --config ./.prettierrc.js --check . && eslint .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prettier:check": "prettier .",
"prettier:fix": "prettier --write .",
"commit": "git-cz",
"release": "node release.mjs && npm run doc",
"doc": "typedoc --out ./dist/docs ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coveo/push-api-client.js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coveo/push-api-client.js/issues"
},
"homepage": "https://github.com/coveo/push-api-client.js#readme",
"standard-version": {
"scripts": {
"postbump": "node fixLock.mjs"
}
}
}