-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "@resonatehq/sdk",
"version": "0.6.3",
"description": "TypeScript SDK for Resonate",
"author": "Resonate Developers",
"license": "Apache-2.0",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/resonatehq/resonate-sdk-ts.git"
},
"publishConfig": {
"provenance": true
},
"files": [
"dist"
],
"scripts": {
"test": "jest --config jest.config.js",
"build": "tsc --build tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"docs": "npx typedoc lib/index.ts --githubPages",
"debug": "node --inspect-brk ./node_modules/.bin/jest -i"
},
"dependencies": {
"cron-parser": "^4.9.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 18"
}
}