forked from productdevbookcom/chatwoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.6 KB
/
package.json
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@productdevbook/chatwoot",
"type": "module",
"version": "1.5.0",
"packageManager": "[email protected]",
"description": "Chatwoot Vue or Nuxt library.",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/chatwoot",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbookcom/chatwoot.git"
},
"bugs": {
"url": "https://github.com/productdevbookcom/chatwoot/issues"
},
"keywords": [
"vue 3",
"chatwoot",
"vue",
"plugin",
"nuxt 3",
"chatwoot",
"vue 3",
"nuxt 3 module",
"plugin"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./vue": {
"types": "./dist/runtime/vue/index.d.ts",
"import": "./dist/runtime/vue/index.mjs"
},
"./*": "./*"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*"
],
"vue": [
"./dist/runtime/vue/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "pnpm nuxi dev playground-nuxt",
"build": "pnpm dev:prepare && pnpm nuxt-module-build build",
"dev:build": "nuxi build playground-nuxt",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground-nuxt",
"play": "pnpm --filter playground-nuxt dev",
"play:vue": "pnpm --filter playground-vue dev",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm dev:prepare && vitest",
"test:watch": "pnpm dev:prepare && vitest --watch",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@antfu/eslint-config": "2.18.1",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.13.1",
"@types/node": "^20.12.13",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.4.2",
"eslint": "^8.57.1",
"happy-dom": "^14.11.4",
"nuxt": "^3.12.4",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"unconfig": "^0.4.5",
"vitest": "^1.6.0",
"vue": "^3.4.38"
},
"resolutions": {
"@productdevbook/chatwoot": "link:."
},
"publishConfig": {
"access": "public"
}
}