-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 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
55
56
57
{
"name": "@nektarai/zoom-api-client",
"version": "0.0.3",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"build": "rimraf dist && tsc --build tsconfig-build.json",
"test": "jest"
},
"keywords": [
"zoom",
"zoomus"
],
"author": "Nektar AI<[email protected]>",
"license": "MIT",
"description": "Zoom API Client for Node.js",
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/nektarai/zoom-api-client#readme",
"dependencies": {},
"devDependencies": {
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.2",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nock": "^14.0.0-beta.18",
"prettier": "^3.3.2",
"prettier2": "npm:prettier@^2.8.8",
"typescript": "^5.5.3",
"rimraf": "^6.0.1"
},
"optionalDependencies": {
"@swc/core-darwin-arm64": "1.3.2",
"@swc/core-darwin-x64": "1.3.2",
"@swc/core-freebsd-x64": "1.3.2",
"@swc/core-linux-arm64-gnu": "1.3.2",
"@swc/core-linux-arm64-musl": "1.3.2",
"@swc/core-linux-x64-gnu": "1.3.2",
"@swc/core-linux-x64-musl": "1.3.2",
"@swc/core-win32-arm64-msvc": "1.3.2",
"@swc/core-win32-ia32-msvc": "1.3.2",
"@swc/core-win32-x64-msvc": "1.3.2"
}
}