@agendize/js-agendize-api 1.33.1 → 1.35.0
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 +10 -4
- package/dist/js-agendize-api.es.js +0 -29871
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agendize/js-agendize-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.35.0",
|
|
4
4
|
"description": "JavaScript wrapper for call Agendize API",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"private": false,
|
|
6
7
|
"keywords": [
|
|
7
8
|
"agendize",
|
|
@@ -32,8 +33,11 @@
|
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
34
35
|
"dev": "vite",
|
|
35
|
-
"build": "vite build && tsc --emitDeclarationOnly",
|
|
36
|
+
"build": "vitest run --silent && vite build && tsc --emitDeclarationOnly",
|
|
37
|
+
"build-visualiser": "vite build --mode visualiser && tsc --emitDeclarationOnly",
|
|
38
|
+
"build-app": "npm run build",
|
|
36
39
|
"build-quick": "vite build",
|
|
40
|
+
"build-quick-app": "npm run build-quick",
|
|
37
41
|
"preview": "vite preview",
|
|
38
42
|
"test": "vitest run --coverage",
|
|
39
43
|
"publish-public": "npm publish --access=public",
|
|
@@ -46,10 +50,11 @@
|
|
|
46
50
|
"@types/luxon": "^3.4.2",
|
|
47
51
|
"@types/node": "^22.10.7",
|
|
48
52
|
"@types/qs": "^6.9.18",
|
|
49
|
-
"@vitest/coverage-
|
|
53
|
+
"@vitest/coverage-istanbul": "^3.1.1",
|
|
50
54
|
"crypto-js": "^4.2.0",
|
|
51
55
|
"fake-indexeddb": "^6.0.0",
|
|
52
56
|
"qs": "^6.14.0",
|
|
57
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
53
58
|
"typescript": "^5.7.3",
|
|
54
59
|
"vite": "^6.0.9",
|
|
55
60
|
"vite-plugin-mkcert": "^1.17.6",
|
|
@@ -59,7 +64,8 @@
|
|
|
59
64
|
"axios": "^1.7.9",
|
|
60
65
|
"idb": "^8.0.1",
|
|
61
66
|
"luxon": "^3.5.0",
|
|
62
|
-
"type-pubsub": "^0.1.4"
|
|
67
|
+
"type-pubsub": "^0.1.4",
|
|
68
|
+
"zod": "^3.24.2"
|
|
63
69
|
},
|
|
64
70
|
"directories": {
|
|
65
71
|
"example": "examples"
|