-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "@cssninja/nuxt-toaster",
"version": "0.3.12",
"license": "MIT",
"type": "module",
"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"
],
"unbuild": {
"failOnWarn": false
},
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev .playground",
"dev:build": "nuxi build .playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare .playground",
"eslint": "eslint --ext .ts,.vue .",
"eslint:fix": "eslint --ext .ts,.vue --fix .",
"test": "run-p test:*",
"test:lint": "run-s eslint",
"test:tsc": "vue-tsc --noEmit",
"release": "pnpm prepack && standard-version && git push --follow-tags origin main && npm publish"
},
"dependencies": {
"@nuxt/kit": "^3.4.2",
"@vueuse/core": "^10.1.0",
"defu": "^6.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@nuxt/module-builder": "^0.3.0",
"@nuxt/schema": "^3.4.2",
"@types/node": "18.16.1",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier-vue": "4.2.0",
"eslint-plugin-tailwindcss": "3.11.0",
"eslint-plugin-vuejs-accessibility": "2.1.0",
"npm-run-all": "^4.1.5",
"nuxt": "^3.4.2",
"standard-version": "^9.5.0",
"typescript": "^5.0.4",
"vue": "^3.2.47",
"vue-tsc": "^1.4.4"
}
}