-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.22 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
{
"name": "@discue/ui-components",
"version": "0.49.0",
"private": false,
"license": "MIT",
"description": "The themeable open source Vue.js UI component library of discue.io",
"repository": {
"type": "git",
"url": "git+https://github.com/discue/ui-components/.git"
},
"bugs": {
"url": "https://github.com/discue/ui-components/issues"
},
"homepage": "https://ui.discue.io",
"type": "module",
"scripts": {
"serve": "vue-cli-service serve",
"build": "bash ./build.sh",
"build-types": "tsc dist/ui.es.js --declaration --emitDeclarationOnly --allowJs",
"build-lib-public-no-ssr": "vue-cli-service build --target lib --name ui src/index.ts",
"build-lib-public-for-ssr": "vue-cli-service build --target lib --name ui --dest dist/ssr src/index.ts",
"build-lib-internal-no-ssr": "vue-cli-service build --target lib --name internal --dest dist/internal src/internal/index.ts",
"build-lib-internal-for-ssr": "vue-cli-service build --target lib --name internal --dest dist/ssr/internal src/internal/index.ts",
"docs:serve": "nodemon --ext md,vue,js,scss --ignore docs/.vuepress/.cache --ignore docs/.vuepress/.temp --watch docs/* --watch styles --watch src/* --exec npm run docs:dev",
"docs:dev": "npm run docs:styles && npx vuepress dev docs",
"docs:build": "npm run docs:styles && vuepress build docs",
"docs:styles": "postcss styles/styles.scss -o docs/.vuepress/styles/index.scss",
"test:unit": "jest tests",
"lint": "eslint -c .eslintconfig.js src",
"release": "npm run build && standard-version && git push --follow-tags origin && npm publish",
"release-minor": "npm run build && standard-version --release-as minor && git push --follow-tags origin && npm publish"
},
"files": [
"dist"
],
"keywords": [
"vue",
"vuejs",
"components",
"ui-components",
"theme",
"themeable",
"discue"
],
"main": "./dist/ui.umd.js",
"exports": {
".": {
"import": "./dist/ui.es.js",
"require": "./dist/ui.umd.js"
},
"./ssr": {
"import": "./dist/ssr/ui.es.js",
"require": "./dist/ssr/ui.umd.js"
},
"./internal": {
"import": "./dist/internal/internal.es.js",
"require": "./dist/internal/internal.umd.js"
},
"./ssr/internal": {
"import": "./dist/ssr/internal/internal.es.js",
"require": "./dist/ssr/internal/internal.umd.js"
}
},
"types": "./dist/ui.es.d.ts",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.7",
"@discue/vuepress-plugin-outline": "^0.4.0",
"@heroicons/vue": "^2.2.0",
"@vitejs/plugin-vue": "^5.1.1",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-unit-mocha": "^5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"@vuepress/bundler-vite": "^2.0.0-rc.19",
"@vuepress/markdown": "^2.0.0-rc.19",
"@vuepress/plugin-register-components": "^2.0.0-rc.66",
"@vuepress/plugin-search": "^2.0.0-rc.74",
"@vuepress/plugin-shiki": "^2.0.0-rc.74",
"@vuepress/plugin-sitemap": "^2.0.0-rc.74",
"@vuepress/theme-default": "^2.0.0-rc.74",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"chai": "4",
"core-js": "^3.40.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"firebase-tools": "^13.29.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdown-it-attrs": "^4.3.1",
"nodemon": "^3.1.9",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"sass-embedded": "^1.83.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.17",
"ts-debounce": "^4.0.0",
"ts-jest": "^29.2.5",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "@vue/vue3-jest"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}