-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "vue-semantic-structure",
"version": "1.0.0",
"description": "Helper for semantic HTML structure.",
"homepage": "https://basics.github.io/vue-semantic-structure",
"license": "MIT",
"author": {
"name": "Thorn-Welf Walli",
"email": "[email protected]"
},
"contributors": [
{
"name": "Thorn-Welf Walli",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/basics/vue-semantic-structure.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"files": [
"dist"
],
"scripts": {
"prepack": "unbuild",
"dev": "vite playground",
"build": "vite build playground",
"preview": "vite preview playground",
"prepare": "husky",
"lint": "npm run lint:es && npm run lint:css",
"lint:es": "eslint .",
"lint:css": "stylelint \"(src|playground)/**/*.vue\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": " vitest run",
"test:dev": "vitest dev"
},
"devDependencies": {
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.14.0",
"@types/node": "22.9.0",
"@vitejs/plugin-vue": "5.1.4",
"@vue/test-utils": "2.4.6",
"commitlint": "19.5.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.30.0",
"globals": "15.12.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"markdown-it-inline-comments": "1.0.1",
"postcss-html": "1.7.0",
"prettier": "3.3.3",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard": "36.0.1",
"unbuild": "2.0.0",
"vite": "5.4.10",
"vitepress": "1.5.0",
"vitest": "2.1.4",
"vue": "3.5.12"
}
}