-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "@stefanobartoletti/nuxt-social-share",
"type": "module",
"version": "1.2.0",
"packageManager": "[email protected]",
"description": "Simple Social Sharing for Nuxt",
"author": "Stefano Bartoletti (https://github.com/stefanobartoletti/)",
"license": "MIT",
"repository": "stefanobartoletti/nuxt-social-share",
"keywords": [
"nuxt",
"nuxt-module",
"social-sharing",
"social-share"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"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 build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi build docs",
"docs:generate": "nuxi generate docs",
"docs:preview": "nuxi preview docs",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "release-it",
"release:beta": "release-it --no-git.requireBranch --preRelease=beta",
"commitlint": "commitlint --edit",
"prepare": "husky"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nuxt/devtools": "^1.6.0",
"@nuxt/eslint-config": "^0.6.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/tailwindcss": "^6.12.2",
"@release-it/conventional-changelog": "^8.0.2",
"@stefanobartoletti/eslint-config": "^3.0.6",
"@types/node": "^20.17.0",
"changelogen": "^0.5.7",
"daisyui": "^4.12.13",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"nuxt": "^3.13.2",
"release-it": "^17.10.0",
"vitest": "^2.1.3"
}
}