-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 2.5 KB
/
package.json
File metadata and controls
executable file
·88 lines (88 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@geeks.solutions/nuxt-sections",
"version": "3.0.19",
"author": "Geeks Solutions info@geeks.solutions (https://www.geeks.solutions)",
"repository": {
"type": "git",
"url": "https://github.com/Geeks-Solutions/nuxt-sections.git"
},
"keywords": [
"page speed",
"ssr render",
"page building",
"A/B testing",
"Content authoring"
],
"description": "A NuxtJS module to interface with Sections Serverless Page Building and rendering engine",
"license": "ISC",
"homepage": "https://sections.geeks.solutions",
"contributors": [],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"link": "npm link"
},
"dependencies": {
"@geeks.solutions/vue-components": "^3.0.9",
"@marshallswain/vuedraggable": "^4.2.0",
"@nuxt/kit": "^3.17.1",
"@nuxtjs/i18n": "^9.5.3",
"intro.js": "^7.2.0",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@nuxt/devtools": "^2.4.0",
"@nuxt/eslint": "^1.3.0",
"@nuxt/eslint-config": "^1.3.0",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.17.1",
"@nuxt/test-utils": "^3.17.2",
"@testing-library/vue": "^8.1.0",
"@types/node": "latest",
"@vitest/coverage-v8": "^3.1.2",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^17.4.6",
"jsdom": "^26.1.0",
"nuxt": "^3.17.1",
"typescript": "~5.8.3",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10",
"prettier": "^3.7.4"
},
"peerDependencies": {
"@marshallswain/vuedraggable": "^4.2.0",
"@pinia/nuxt": "^0.11.0",
"pinia": "^3.0.2",
"vue-toastification": "^2.0.0-rc.5"
}
}