-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
83 lines (83 loc) · 2.26 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
{
"name": "vue-page-title",
"version": "2.2.2",
"description": "Vue.js html/page title manager",
"repository": "https://github.com/vinicius73/vue-page-title",
"author": "Vinicius Reis <[email protected]>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"keywords": [
"vue",
"head",
"title",
"document",
"meta"
],
"types": "dist/index.d.ts",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.iife.min.js",
"jsdelivr": "dist/index.iife.min.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build && yarn run build:minify && yarn build:tsc",
"build:minify": "MINIFY=yes vite build",
"build:tsc": "tsc lib/index.ts --declaration --emitDeclarationOnly --lib es2022,DOM --outDir dist ",
"build:doc": "vue-tsc --noEmit && vite build -c vite.config.example.ts && typedoc",
"prepack": "yarn run build",
"dev": "vite dev -c vite.config.example.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint lib example",
"format": "prettier -w .",
"format:check": "prettier -c .",
"check": "yarn lint && yarn format:check"
},
"peerDependencies": {
"vue": "^3.2",
"vue-router": "^4.1"
},
"peerDependenciesMeta": {
"vue": {
"optional": false
},
"vue-router": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.33.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.15.1",
"jsdom": "^20.0.3",
"mini-svg-data-uri": "^1.4.4",
"prettier": "^2.8.8",
"radash": "^10.9.0",
"reseter.css": "^2.0.0",
"typedoc": "^0.24.8",
"typescript": "^4.9.5",
"vite": "^4.4.6",
"vite-plugin-banner": "^0.7.0",
"vitest": "^0.33.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vue-tsc": "^1.8.6"
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"packageManager": "[email protected]"
}