een-api-toolkit 0.0.5

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 ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "een-api-toolkit",
3
+ "version": "0.0.5",
4
+ "description": "EEN Video platform API v3.0 library for Vue 3",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "vite build",
22
+ "preview": "vite preview",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:e2e": "playwright test",
26
+ "test:e2e:ui": "playwright test --ui",
27
+ "lint": "eslint src --ext .ts,.vue",
28
+ "lint:fix": "eslint src --ext .ts,.vue --fix",
29
+ "typecheck": "vue-tsc --noEmit",
30
+ "docs": "npm run docs:api && npm run docs:ai-context",
31
+ "docs:api": "typedoc",
32
+ "docs:ai-context": "npx tsx scripts/generate-ai-context.ts",
33
+ "verify-package": "./scripts/verify-package.sh",
34
+ "prepublishOnly": "npm run build && npm run docs",
35
+ "prepare": "husky"
36
+ },
37
+ "peerDependencies": {
38
+ "pinia": "^2.0.0 || ^3.0.0",
39
+ "vue": "^3.3.0"
40
+ },
41
+ "devDependencies": {
42
+ "@playwright/test": "^1.57.0",
43
+ "@types/node": "^20.10.0",
44
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
45
+ "@typescript-eslint/parser": "^6.21.0",
46
+ "@vitejs/plugin-vue": "^5.0.0",
47
+ "@vue/tsconfig": "^0.5.0",
48
+ "dotenv": "^17.2.3",
49
+ "eslint": "^8.56.0",
50
+ "eslint-plugin-vue": "^9.20.0",
51
+ "husky": "^9.1.7",
52
+ "jsdom": "^27.4.0",
53
+ "pinia": "^2.1.7",
54
+ "tsx": "^4.21.0",
55
+ "typedoc": "^0.28.15",
56
+ "typedoc-plugin-markdown": "^4.9.0",
57
+ "typescript": "^5.3.0",
58
+ "vite": "^5.0.0",
59
+ "vite-plugin-dts": "^3.7.0",
60
+ "vitest": "^1.2.0",
61
+ "vue": "^3.4.0",
62
+ "vue-tsc": "^1.8.0"
63
+ },
64
+ "keywords": [
65
+ "eagle-eye-networks",
66
+ "een",
67
+ "api",
68
+ "vue3",
69
+ "typescript",
70
+ "video-surveillance"
71
+ ],
72
+ "repository": {
73
+ "type": "git",
74
+ "url": "https://github.com/klaushofrichter/een-api-toolkit"
75
+ },
76
+ "license": "MIT",
77
+ "publishConfig": {
78
+ "access": "public"
79
+ },
80
+ "engines": {
81
+ "node": ">=20.0.0"
82
+ }
83
+ }