-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "@cloudbolt/vue-component-library",
"version": "0.0.8",
"license": "MIT",
"description": "CloudBolt component library",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-component-library.js",
"module": "./dist/vue-component-library.umd.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-component-library.js",
"require": "./dist/vue-component-library.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/CloudBoltSoftware/vue-component-library.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"check:lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore src",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"check:format": "prettier --check .",
"format": "prettier . --write",
"pre-commit": "npm run format && npm run lint"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.3.4",
"vue-i18n": "^9.5.0",
"vuetify": "^3.3.22"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/vue": "^7.0.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/coverage-istanbul": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"eslint-plugin-vue-scoped-css": "^2.5.1",
"eslint-plugin-vuejs-accessibility": "^2.2.0",
"eslint-plugin-vuetify": "^2.0.5",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"ramda": "^0.29.1",
"resize-observer-polyfill": "^1.5.1",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.1",
"vite-plugin-vuetify": "^1.0.2",
"vitest": "^0.34.6",
"vue-dompurify-html": "^4.1.4"
}
}