forked from TheJaredWilcurt/vue-doxen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.92 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "vue-doxen",
"version": "0.4.7",
"description": "The world's best Vue.js component documentation tool!",
"scripts": {
"start": "vite dev --config vite.config.docs.js",
"preview": "vite preview --config vite.config.docs.js",
"prepublishOnly": "npm run build",
"build": "npm run build:library && npm run build:docs",
"build:docs": "vite build --config vite.config.docs.js",
"build:library": "vite build --config vite.config.lib.js",
"postbuild": "node ./scripts/postbuild.js",
"lint": "eslint --ext .js,.vue --config=.eslintrc.cjs lib scripts tests app vite.config.*.js .eslintrc.cjs",
"fix": "eslint --fix --ext .js,.vue --config=.eslintrc.cjs lib scripts tests app vite.config.*.js .eslintrc.cjs",
"unit": "cross-env TZ=America/New_York vitest --coverage --config vite.config.lib.js",
"test": "cross-env TZ=America/New_York vitest run --coverage --config vite.config.lib.js",
"outdated": "npx --yes -- check-outdated --ignore-packages eslint,eslint-config-tjw-vue,eslint-config-tjw-base,eslint-plugin-import,eslint-plugin-vue,vue-axe --columns package,current,wanted,latest --types major,minor,patch"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@highlightjs/vue-plugin": "2.1.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"axe-core": "^4.10.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-tjw-base": "^2.0.0",
"eslint-config-tjw-import": "^1.0.0",
"eslint-config-tjw-jest": "^2.0.0",
"eslint-config-tjw-vue": "^3.0.0",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"happy-dom": "^15.11.7",
"json5": "^2.2.3",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.kebabcase": "^4.1.1",
"lodash.lowerfirst": "^4.3.1",
"lodash.startcase": "^4.4.0",
"nprogress": "^0.2.0",
"sass": "^1.83.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-axe": "^3.1.2",
"vue-options-api-constants-plugin": "^1.0.1",
"vue-router": "^4.5.0",
"vue3-snapshot-serializer": "^2.0.0"
},
"private": false,
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-doxen.umd.cjs",
"module": "./dist/vue-doxen.js",
"sideEffects": false,
"unpkg": "./dist/vue-doxen.iife.js",
"jsdelivr": "./dist/vue-doxen.iife.js",
"exports": {
".": {
"import": "./dist/vue-doxen.js",
"require": "./dist/vue-doxen.umd.cjs"
},
"./dist/vue-doxen.js": {
"import": "./dist/vue-doxen.js"
},
"./dist/vue-doxen.cjs": {
"import": "./dist/vue-doxen.cjs"
},
"./dist/vue-doxen.iife.js": {
"import": "./dist/vue-doxen.iife.js"
},
"./dist/vue-doxen.umd.cjs": {
"import": "./dist/vue-doxen.umd.cjs"
},
"./dist/vue-doxen.css": {
"import": "./dist/vue-doxen.css"
},
"./vue-doxen.js": {
"import": "./dist/vue-doxen.js"
},
"./vue-doxen.mjs": {
"import": "./dist/vue-doxen.js"
},
"./vue-doxen.cjs": {
"import": "./dist/vue-doxen.cjs"
},
"./vue-doxen.iife.js": {
"import": "./dist/vue-doxen.iife.js"
},
"./vue-doxen.umd.cjs": {
"import": "./dist/vue-doxen.umd.cjs"
},
"./vue-doxen.css": {
"import": "./dist/vue-doxen.css"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheJaredWilcurt/vue-doxen.git"
},
"keywords": [
"vue",
"documentation",
"doxen",
"vue.js",
"component",
"library",
"docs"
],
"author": "The Jared Wilcurt",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheJaredWilcurt/vue-doxen/issues"
},
"homepage": "https://github.com/TheJaredWilcurt/vue-doxen#readme",
"volta": {
"node": "23.5.0",
"npm": "10.9.2"
}
}