-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
{
"name": "vue-stappen",
"description": "Vue 3 Stepper component",
"version": "1.3.3",
"license": "ISC",
"private": false,
"keywords": [
"vue",
"vue3",
"vue 3",
"stepper",
"component",
"skeleton",
"wizzard"
],
"author": {
"name": "Tim van Herwijnen",
"url": "https://github.com/timyourivh"
},
"repository": {
"type": "git",
"url": "https://github.com/timyourivh/vue-stappen"
},
"type": "module",
"main": "./dist/vue-stappen.umd.cjs",
"module": "./dist/vue-stappen.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"bump": "pnpm build && pnpm version"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"vue": "^3.4.26"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.2",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.6",
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "^20.12.8",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"daisyui": "^4.10.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.25.0",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "~5.3.3",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.3",
"vue-router": "^4.3.2",
"vue-tsc": "^1.8.27"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}