@chill-sharp/vue-client 1.1.12 → 1.1.15
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/README.md +448 -448
- package/package.json +48 -48
- package/src/composables.ts +547 -547
- package/src/index.ts +78 -78
- package/src/plugin.ts +58 -58
- package/src/version.ts +20 -20
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@chill-sharp/vue-client",
|
|
3
|
-
"repository": {
|
|
4
|
-
"type": "git",
|
|
5
|
-
"url": "git+https://github.com/e-500/chill-sharp.git",
|
|
6
|
-
"directory": "extra/chill-sharp-vue-client"
|
|
7
|
-
},
|
|
8
|
-
"version": "1.1.
|
|
9
|
-
"description": "Vue client helpers for generic ChillSharp services",
|
|
10
|
-
"license": "AGPL-3.0-or-later",
|
|
11
|
-
"type": "module",
|
|
12
|
-
"main": "./dist/index.js",
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
17
|
-
"import": "./dist/index.js"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist",
|
|
22
|
-
"src",
|
|
23
|
-
"README.md"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "tsc -p tsconfig.json",
|
|
27
|
-
"check": "tsc -p tsconfig.json --noEmit",
|
|
28
|
-
"prepare": "npm run build",
|
|
29
|
-
"prepack": "npm run build"
|
|
30
|
-
},
|
|
31
|
-
"keywords": [
|
|
32
|
-
"chillsharp",
|
|
33
|
-
"vue",
|
|
34
|
-
"typescript",
|
|
35
|
-
"client",
|
|
36
|
-
"composables"
|
|
37
|
-
],
|
|
38
|
-
"author": "Andrea Piovesan",
|
|
39
|
-
"peerDependencies": {
|
|
40
|
-
"vue": "^3.4.0",
|
|
41
|
-
"@chill-sharp/ts-client": "^1.1.
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"typescript": "^5.8.2",
|
|
45
|
-
"@chill-sharp/ts-client": "file:../chill-sharp-ts-client"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@chill-sharp/vue-client",
|
|
3
|
+
"repository": {
|
|
4
|
+
"type": "git",
|
|
5
|
+
"url": "git+https://github.com/e-500/chill-sharp.git",
|
|
6
|
+
"directory": "extra/chill-sharp-vue-client"
|
|
7
|
+
},
|
|
8
|
+
"version": "1.1.15",
|
|
9
|
+
"description": "Vue client helpers for generic ChillSharp services",
|
|
10
|
+
"license": "AGPL-3.0-or-later",
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"src",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc -p tsconfig.json",
|
|
27
|
+
"check": "tsc -p tsconfig.json --noEmit",
|
|
28
|
+
"prepare": "npm run build",
|
|
29
|
+
"prepack": "npm run build"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"chillsharp",
|
|
33
|
+
"vue",
|
|
34
|
+
"typescript",
|
|
35
|
+
"client",
|
|
36
|
+
"composables"
|
|
37
|
+
],
|
|
38
|
+
"author": "Andrea Piovesan",
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"vue": "^3.4.0",
|
|
41
|
+
"@chill-sharp/ts-client": "^1.1.15"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"typescript": "^5.8.2",
|
|
45
|
+
"@chill-sharp/ts-client": "file:../chill-sharp-ts-client"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|