-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "nuxt-3-intercom",
"type": "module",
"version": "1.1.2",
"description": "This nuxt 3 module provides a client side plugin that add intercom to window and provides $intercom instance so you can easily access intercom function like update user properties",
"author": {
"name": "devnik",
"email": "[email protected]",
"url": "https://devnik.dev/"
},
"license": "MIT",
"homepage": "https://github.com/devonik/nuxt-3-intercom#readme",
"repository": {
"type": "git",
"url": "https://github.com/devonik/nuxt-3-intercom.git"
},
"bugs": {
"url": "https://github.com/devonik/nuxt-3-intercom/issues",
"email": "[email protected]"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"compile": "nuxi typecheck",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "npm run lint && npm run prepack && changelogen --release --${VERSION:-patch} && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"defu": "^6.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.27",
"@nuxt/devtools": "1.0.0-beta.3",
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@nuxt/test-utils": "^3.7.4",
"@types/node": "^20.8.7",
"changelogen": "^0.5.5",
"eslint": "^8.51.0",
"lint-staged": "^15.0.1",
"nuxt": "^3.7.4",
"simple-git-hooks": "^2.9.0",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}