-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2 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
{
"name": "@croct/plug-nuxt",
"version": "0.0.0-dev",
"description": "Nuxt module to plug your Nuxt 3 applications into Croct.",
"author": {
"name": "Croct",
"url": "https://croct.com",
"email": "lib+plug-nuxt@croct.com"
},
"license": "MIT",
"keywords": [
"croct",
"personalization",
"nuxt",
"vue",
"typescript"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs"
},
"./types": {
"types": "./dist/runtime/types.d.ts"
},
"./csr": {
"types": "./dist/runtime/csr/index.d.ts",
"import": "./dist/runtime/csr/index.js"
},
"./runtime/*": "./dist/runtime/*"
},
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/plug-nuxt.git"
},
"scripts": {
"prepare": "nuxi prepare e2e/app",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev e2e/app",
"dev:build": "nuxi build e2e/app",
"build": "nuxt-module-build build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:e2e": "playwright test",
"test:e2e:prerender": "playwright test -c playwright.prerender.config.ts",
"validate": "tsc --noEmit"
},
"peerDependencies": {
"nuxt": "^3.0.0"
},
"dependencies": {
"@croct/plug": "^0.23.0",
"@croct/plug-vue": "^0.1.0",
"@croct/sdk": "^0.22.0",
"@nuxt/kit": "^3.17.5"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.9.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.18.0",
"@nuxtjs/i18n": "^10.4.0",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.0.0",
"happy-dom": "^20.9.0",
"nuxt": "^3.17.5",
"ts-node": "^10.9.2",
"tsx": "^4.22.3",
"typescript": "^5.6.2",
"vitest": "^3.2.3",
"vue": "^3.5.0"
}
}