-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.18 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
{
"name": "@lostelk/lost-ui",
"version": "1.1.0-alpha.1",
"private": false,
"description": "A component library for Vue 3.",
"repository": {
"type": "git",
"url": "https://github.com/LostElkByte/lost-ui"
},
"keywords": [
"vue",
"vue3",
"component",
"ui",
"library"
],
"author": {
"name": "LostElk",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://lostelkbyte.github.io/lost-ui/",
"type": "module",
"files": [
"dist"
],
"sideEffects": [
"dist/index.css"
],
"main": "./dist/umd/lost-ui.umd.js",
"module": "./dist/es/lost-ui.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/es/lost-ui.js",
"require": "./dist/umd/lost-ui.umd.js",
"types": "./dist/types/index.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"scripts": {
"dev": "vite",
"build": "npm run build-only && npm run move-style",
"preview": "vite preview",
"build-only": "run-p build-umd build-es",
"build-umd": "vite build --config vite.umd.config.ts",
"build-es": "vite build --config vite.es.config.ts",
"move-style": "move-file dist/es/index.css dist/index.css",
"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/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"deploy": "npm run docs:build && gh-pages -d docs/.vitepress/dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@popperjs/core": "^2.11.8",
"lodash-es": "^4.17.21",
"vue3-resizable": "1.0.0-alpha.3"
},
"peerDependencies": {
"vue": "^3.4.29"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vitepress-demo-preview/component": "^2.3.2",
"@vitepress-demo-preview/plugin": "^1.2.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"cz-customizable": "7.2.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"gh-pages": "^6.2.0",
"jsdom": "^25.0.1",
"move-file-cli": "^3.0.0",
"npm-run-all2": "^6.2.0",
"postcss-color-mix": "^1.1.0",
"postcss-each": "^1.1.0",
"postcss-each-variables": "^0.3.0",
"postcss-for": "^2.1.1",
"postcss-nested": "^6.2.0",
"prettier": "^3.2.5",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.2.4",
"vitepress": "^1.4.1",
"vitest": "^2.1.2",
"vue": "^3.4.29",
"vue-tsc": "^2.0.21"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
}
}