@bitrix24/b24jssdk-nuxt 0.1.0 → 0.1.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/README.md +3 -1
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -10,4 +10,6 @@ Install the module to your Nuxt application with one command:
|
|
|
10
10
|
npx nuxi module add @bitrix24/b24jssdk-nuxt
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
That's it! You can now use `@bitrix24/b24jssdk-nuxt` in your Nuxt app
|
|
13
|
+
That's it! You can now use `@bitrix24/b24jssdk-nuxt` in your Nuxt app
|
|
14
|
+
|
|
15
|
+
Find more details in the [documentation](https://bitrix24.github.io/b24jssdk/guide/getting-started-nuxt.html)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrix24/b24jssdk-nuxt",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"author": "Bitrix",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Bitrix24 REST API JS SDK for Nuxt",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"restapi",
|
|
10
10
|
"nuxt"
|
|
11
11
|
],
|
|
12
|
+
"homepage": "https://bitrix24.github.io/b24jssdk/",
|
|
12
13
|
"repository": {
|
|
13
14
|
"type": "git",
|
|
14
15
|
"url": "git+https://github.com/bitrix24/b24jssdk-nuxt.git"
|
|
@@ -32,7 +33,8 @@
|
|
|
32
33
|
"access": "public"
|
|
33
34
|
},
|
|
34
35
|
"scripts": {
|
|
35
|
-
"
|
|
36
|
+
"tmp_release": "npm run lint && npm run test && npm run prepack",
|
|
37
|
+
"release": "npm run test && npm run prepack",
|
|
36
38
|
"postinstall": "nuxt prepare",
|
|
37
39
|
"prepack": "nuxt-module-build build",
|
|
38
40
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
@@ -45,17 +47,21 @@
|
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
49
|
"@nuxt/kit": "^3.13.2",
|
|
48
|
-
"@bitrix24/b24jssdk": "latest"
|
|
50
|
+
"@bitrix24/b24jssdk": "latest",
|
|
51
|
+
"axios": "^1.7.7",
|
|
52
|
+
"qs": "^6.13.0",
|
|
53
|
+
"luxon": "^3.5.0"
|
|
49
54
|
},
|
|
50
55
|
"peerDependencies": {},
|
|
51
56
|
"devDependencies": {
|
|
57
|
+
"@types/luxon": "^3.4.2",
|
|
52
58
|
"@nuxt/devtools": "^1.6.0",
|
|
53
|
-
"@nuxt/eslint-config": "^0.
|
|
59
|
+
"@nuxt/eslint-config": "^0.7.0",
|
|
54
60
|
"@nuxt/module-builder": "^0.8.4",
|
|
55
61
|
"@nuxt/schema": "^3.13.2",
|
|
56
62
|
"@nuxt/test-utils": "^3.14.4",
|
|
57
63
|
"@types/node": "latest",
|
|
58
|
-
"eslint": "^9.
|
|
64
|
+
"eslint": "^9.15.0",
|
|
59
65
|
"nuxt": "^3.13.2",
|
|
60
66
|
"typescript": "latest",
|
|
61
67
|
"vitest": "^2.1.4",
|