-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.01 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@midstallsoftware/vista",
"version": "1.0.0",
"description": "Library for extra components and useful things to make Midstall's websites work better with Nuxt 3",
"main": "./dist/module.mjs",
"module": "./dist/module.mjs",
"commonjs": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"typings": "./dist/types.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./dist/runtime/*": "./dist/runtime/*",
"./runtime/*": "./dist/runtime/*"
},
"files": [
"dist"
],
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"sideEffects": false,
"scripts": {
"dev:prepare": "husky install && npm run stubs",
"prepack": "nuxt-module-build",
"build": "nuxt-module-build",
"stubs": "nuxt-module-build --stub && nuxi prepare playground",
"playground:build": "nuxi build playground",
"playground:generate": "nuxi generate playground",
"playground:dev": "nuxi dev playground",
"playground": "node playground/.output/server/index.mjs",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint:prettier": "prettier -c .",
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidstallSoftware/vista.git"
},
"author": "Tristan Ross",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MidstallSoftware/vista/issues"
},
"homepage": "https://github.com/MidstallSoftware/vista#readme",
"peerDependencies": {
"@intlify/nuxt3": "^0.2.1",
"@nuxtjs/color-mode": "^3.0.2"
},
"dependencies": {
"@headlessui/vue": "^1.6.2",
"@intlify/core-base": "^9.1.10",
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@mdi/js": "^6.7.96",
"@nuxt/kit": "^3.0.0-rc.1",
"@nuxtjs/tailwindcss": "^6.1.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@yeliulee/vue-mdi-svg": "^1.0.4",
"accept-language-parser": "^1.5.0",
"daisyui": "^2.15.0",
"date-fns": "^2.28.0",
"deepmerge": "^4.2.2",
"tailwindcss": "^3.2.4",
"vue-next-i18n": "^1.0.10"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.4",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@types/accept-language-parser": "^1.5.3",
"@types/tailwindcss": "^3.0.10",
"commitlint": "^16.2.4",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"nuxt": "^3.0.0-rc.1",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"stylelint": "^14.8.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^3.0.0"
}
}