-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "nuxt3-notifications",
"version": "1.2.3",
"license": "MIT",
"type": "module",
"keywords": [
"nuxt3-module",
"nuxt3-notifications",
"vue3-notifications"
],
"repository": {
"type": "git",
"url": "https://github.com/windx-foobar/nuxt3-notifications"
},
"homepage": "https://windx-foobar.github.io/nuxt3-notifications",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"templates"
],
"engines": {
"node": ">= 14.20.0"
},
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"docs:deploy": "push-dir --dir=docs/dist --branch=gh-pages --cleanup",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint ."
},
"peerDependencies": {
"@nuxt/kit": "^3.0.0"
},
"dependencies": {
"@kyvg/vue3-notification": "^3.2.1",
"scule": "^1.0.0",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt-themes/docus": "latest",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"changelogen": "^0.5.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.56.0",
"nuxt": "^3.0.0",
"prettier": "^3.2.5",
"push-dir": "^0.4.1",
"sass": "^1.57.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/git/commitizen.cjs"
}
},
"packageManager": "[email protected]+sha256.e1f9e8d1a16607a46dd3c158b5f7a7dc7945501d1c6222d454d63d033d1d918f"
}