-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@tadata-js/sdk",
"version": "0.1.2",
"description": "Tadata Node SDK",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "npx rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "npx tsc -p tsconfig.cjs.json",
"build:esm": "npx tsc -p tsconfig.esm.json",
"build:types": "npx tsc -p tsconfig.types.json",
"test": "npx jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"tadata",
"api",
"sdk",
"openapi",
"mcp",
"modelcontextprotocol"
],
"author": "Tadata Inc.",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@ts-rest/core": "^3.30.5",
"axios": "^1.6.2",
"http-status-codes": "^2.3.0",
"openapi-typescript": "^7.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.10.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"nock": "^13.3.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"semantic-release": "^24.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"uuid": "^11.1.0"
}
}