-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
138 lines (138 loc) · 4.3 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
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "vue-uswds",
"description": "Vue 3 implementation of the USWDS (U.S. Web Design System) component library",
"version": "1.10.0",
"author": "Patrick Cate",
"license": "MIT",
"keywords": [
"vue",
"uswds",
"U.S. Web Design System"
],
"homepage": "https://patrickcate.github.io/vue-uswds",
"repository": {
"type": "git",
"url": "https://github.com/patrickcate/vue-uswds"
},
"bugs": {
"url": "https://github.com/patrickcate/vue-uswds/issues"
},
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"main": "./dist/vue-uswds.umd.js",
"module": "./dist/vue-uswds.es.js",
"unpkg": "./dist/vue-uswds.umd.js",
"jsdelivr": "./dist/vue-uswds.umd.js",
"exports": {
".": {
"require": "./dist/vue-uswds.umd.js",
"import": "./dist/vue-uswds.es.js"
},
"./core": {
"require": "./dist/vue-uswds.core.umd.js",
"import": "./dist/vue-uswds.core.es.js"
},
"./components": {
"require": "./dist/vue-uswds.components.cjs",
"import": "./dist/vue-uswds.components.mjs"
}
},
"scripts": {
"dev": "vite",
"build": "npm run build:all && npm run build:core && npm run build:components",
"build:all": "vite build -c ./build/vite.build.all.js",
"build:core": "vite build -c ./build/vite.build.core.js",
"build:components": "vite build -c ./build/vite.build.components.js",
"serve": "vite preview",
"commit": "cz",
"new": "cross-env HYGEN_TMPLS=./.hygen hygen new",
"lint": "eslint --ext .js,.vue --fix .",
"lint:tree-shaking": "npm run build && npx agadoo dist/vue-uswds.components.mjs",
"cypress:open": "cross-env TZ=America/New_York cypress open",
"cypress:open-ct": "cross-env TZ=America/New_York cypress open --component",
"pretest:component": "rm -rf .nyc_output coverage || true",
"test:component": "cross-env TZ=America/New_York cypress run --component",
"test:e2e": "cross-env TZ=America/New_York cypress run",
"prepare": "husky",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "STORYBOOK_MODE=BUILD storybook build",
"postbuild-storybook": "cp ./media/logo.svg ./storybook-static/logo.svg",
"symlink-assets": "ln -s node_modules/@uswds/uswds/dist assets",
"semantic-release": "semantic-release"
},
"dependencies": {
"@floating-ui/dom": "^1.0.4",
"@vueuse/components": "^10.7.0",
"@vueuse/core": "^10.7.0",
"@vueuse/integrations": "^10.7.0",
"date-fns": "^3.6.0",
"fast-sort": "^3.1.3",
"focus-trap": "^7.0.0",
"just-kebab-case": "^4.0.0",
"just-split": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@cypress/code-coverage": "^3.9.12",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^8.2.4",
"@storybook/addon-docs": "^8.2.4",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-links": "^8.2.4",
"@storybook/addon-mdx-gfm": "^8.2.4",
"@storybook/blocks": "^8.2.4",
"@storybook/manager-api": "^8.2.4",
"@storybook/theming": "^8.2.4",
"@storybook/vue3": "^8.2.4",
"@storybook/vue3-vite": "^8.2.4",
"@uswds/uswds": "^3.6.1",
"@vitejs/plugin-vue": "^4.0.0",
"agadoo": "^3.0.0",
"babel-loader": "^8.2.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cypress": "^13.6.2",
"cypress-real-events": "^1.11.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^9.0.11",
"hygen-neo": "^6.3.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"semantic-release": "^19.0.5",
"storybook": "^8.2.4",
"vite": "^4.0.0",
"vite-plugin-istanbul": "^5.0.0",
"vue": "^3.2.33",
"vue-loader": "^17.0.0",
"vue-router": "^4.0.12"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"lint-staged": {
"*.{js,vue}": [
"npm run lint"
]
}
}