-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.37 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.37 KB
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
139
{
"name": "@discue/ui-components",
"version": "1.7.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.28.3",
"@babel/preset-env": "^7.27.2",
"@discue/vuepress-plugin-outline": "^0.6.0",
"@heroicons/vue": "^2.2.0",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/vite": "^4.2.1",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/cli-plugin-babel": "~5.0.9",
"@vue/cli-plugin-eslint": "~5.0.9",
"@vue/cli-plugin-typescript": "~5.0.9",
"@vue/cli-plugin-unit-mocha": "^5.0.9",
"@vue/cli-service": "~5.0.9",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"@vuepress/bundler-vite": "^2.0.0-rc.26",
"@vuepress/markdown": "^2.0.0-rc.26",
"@vuepress/plugin-register-components": "^2.0.0-rc.118",
"@vuepress/plugin-search": "^2.0.0-rc.121",
"@vuepress/plugin-shiki": "^2.0.0-rc.121",
"@vuepress/plugin-sitemap": "^2.0.0-rc.121",
"@vuepress/theme-default": "^2.0.0-rc.121",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"chai": "^6.2.2",
"core-js": "^3.48.0",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"firebase-tools": "^15.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdown-it-attrs": "^4.3.1",
"nodemon": "^3.1.10",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"sass-embedded": "^1.97.3",
"standard-version": "^9.5.0",
"tailwindcss": "^4.1.18",
"ts-debounce": "^4.0.0",
"ts-jest": "^29.4.6",
"vue-router": "^5.0.4",
"vue-tsc": "^3.2.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "@vue/vue3-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/jest.setup.js"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}