@clinchdate/api-client 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +15 -42
package/package.json
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clinchdate/api-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Type-safe API client library for ClinchDate - works across mobile, web, and admin applications",
|
|
5
|
-
|
|
6
|
-
|
|
7
5
|
"type": "module",
|
|
8
6
|
"main": "./dist/index.js",
|
|
9
7
|
"module": "./dist/index.js",
|
|
10
8
|
"types": "./dist/index.d.ts",
|
|
11
|
-
|
|
12
|
-
|
|
13
9
|
"exports": {
|
|
14
10
|
".": {
|
|
15
11
|
"types": "./dist/index.d.ts",
|
|
@@ -28,48 +24,29 @@
|
|
|
28
24
|
"import": "./dist/hooks/index.js"
|
|
29
25
|
}
|
|
30
26
|
},
|
|
31
|
-
|
|
32
|
-
|
|
33
27
|
"files": [
|
|
34
28
|
"dist",
|
|
35
29
|
"README.md",
|
|
36
30
|
"LICENSE"
|
|
37
31
|
],
|
|
38
|
-
|
|
39
|
-
|
|
40
32
|
"scripts": {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"prepublish": "npm run build",
|
|
51
|
-
"publish": "npm publish",
|
|
52
|
-
"publish:dry": "npm publish --dry-run"
|
|
33
|
+
"clean": "rimraf dist",
|
|
34
|
+
"build": "tsc",
|
|
35
|
+
"prebuild": "npm run clean",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
38
|
+
"lint": "eslint src --ext .ts",
|
|
39
|
+
"type-check": "tsc --noEmit",
|
|
40
|
+
"prepublishOnly": "npm run build",
|
|
41
|
+
"publish:dry": "npm publish --dry-run"
|
|
53
42
|
},
|
|
54
|
-
|
|
55
|
-
|
|
56
43
|
"dependencies": {
|
|
57
44
|
"axios": "^1.7.9"
|
|
58
45
|
},
|
|
59
|
-
|
|
60
|
-
|
|
61
46
|
"peerDependencies": {
|
|
62
47
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
63
48
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
64
49
|
},
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"peerDependenciesOptional": {
|
|
68
|
-
"react": "*",
|
|
69
|
-
"react-dom": "*"
|
|
70
|
-
},
|
|
71
|
-
|
|
72
|
-
|
|
73
50
|
"devDependencies": {
|
|
74
51
|
"@types/jest": "^29.5.14",
|
|
75
52
|
"@types/node": "^20.17.16",
|
|
@@ -79,11 +56,13 @@
|
|
|
79
56
|
"@typescript-eslint/parser": "^7.18.0",
|
|
80
57
|
"eslint": "^8.57.0",
|
|
81
58
|
"jest": "^29.7.0",
|
|
59
|
+
"rimraf": "^5.0.0",
|
|
82
60
|
"ts-jest": "^29.2.5",
|
|
83
61
|
"typescript": "^5.7.3"
|
|
84
62
|
},
|
|
85
|
-
|
|
86
|
-
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
65
|
+
},
|
|
87
66
|
"keywords": [
|
|
88
67
|
"api-client",
|
|
89
68
|
"clinchdate",
|
|
@@ -100,21 +79,15 @@
|
|
|
100
79
|
"license": "MIT",
|
|
101
80
|
"repository": {
|
|
102
81
|
"type": "git",
|
|
103
|
-
"url": "https://github.com
|
|
82
|
+
"url": "git+https://github.com"
|
|
104
83
|
},
|
|
105
|
-
|
|
106
|
-
|
|
107
84
|
"homepage": "https://github.com/clinchdate/clinchdate-monorepo#readme",
|
|
108
85
|
"bugs": {
|
|
109
86
|
"url": "https://github.com/clinchdate/clinchdate-monorepo/issues"
|
|
110
87
|
},
|
|
111
|
-
|
|
112
|
-
|
|
113
88
|
"engines": {
|
|
114
89
|
"node": ">=18.0.0",
|
|
115
90
|
"npm": ">=9.0.0"
|
|
116
91
|
}
|
|
117
92
|
}
|
|
118
93
|
|
|
119
|
-
|
|
120
|
-
|