-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
{
"name": "@pacific-agency/nuxt-utils",
"version": "0.18.3",
"description": "Утилиты Nuxt",
"repository": {
"type": "git",
"url": "https://github.com/Pacific-Agency/nuxt-utils"
},
"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"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"prepack": "nuxt-module-build build",
"prepare": "husky && nuxt prepare",
"prettier": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern *",
"prettier:write": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern *",
"test": "vitest"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,json}": "eslint --cache --fix",
"*": "prettier --write -u"
},
"prettier": "@exer7um/prettier-config",
"dependencies": {
"@nuxt/kit": "^3.12.4",
"@vuepic/vue-datepicker": "^10.0.0",
"@vueuse/core": "^12.0.0",
"consola": "^3.2.3",
"isomorphic-dompurify": "^2.14.0",
"maska": "^3.0.0",
"ohash": "^1.1.3"
},
"devDependencies": {
"@exer7um/eslint-config": "1.4.7",
"@exer7um/prettier-config": "0.5.0",
"@nuxt/eslint-config": "0.7.4",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.15.1",
"@vue/test-utils": "2.4.6",
"happy-dom": "^12.10.3",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"nuxt": "3.14.1592",
"typescript": "5.7.2",
"vitepress": "1.5.0",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@nuxt/icon": "^1.3.1",
"vue": "^3.4.34"
},
"packageManager": "pnpm@9.15.1"
}