This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.22 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
{
"name": "@vuestorefront-community/nuxt-click-outside",
"version": "1.1.2",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"repository": "vuestorefront-community/nuxt-click-outside",
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"author": {
"email": "[email protected]",
"name": "Heitor Ramon Ribeiro",
"url": "https://heitor.co"
},
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground && cd playground && npm i",
"docs:build": "cd docs && nuxi build",
"docs:dev": "cd docs && nuxi dev",
"docs:generate": "cd docs && nuxi build",
"docs:prepare": "cd docs && npm i",
"docs:preview": "cd docs && nuxi preview",
"precommit": "lint-staged",
"prepack": "nuxt-module-build",
"prepare": "husky install",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.4",
"pathe": "^0.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.0.0-rc.4",
"@types/node": "^18.0.0",
"@types/prettier": "^2.6.3",
"@vue-storefront/eslint-config-nuxt": "^1.0.13",
"@vue/test-utils": "^2.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "latest",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nuxt": "^3.0.0-rc.4",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}