-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
90 lines (90 loc) · 2.45 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
{
"name": "@soybeanjs/vue-admin-layout",
"version": "1.2.1",
"private": false,
"description": "a layout component of admin template, support vue2 and vue3",
"author": "Soybean (honghuangdc@gmail.com)",
"license": "MIT",
"homepage": "https://github.com/honghuangdc/soybean-admin-layout#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/honghuangdc/soybean-admin-layout.git"
},
"bugs": {
"url": "https://github.com/honghuangdc/soybean-admin-layout/issues"
},
"keywords": [
"admin",
"layout",
"admin-layout",
"vue2",
"vue3"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "npm-run-all typecheck vite:build",
"build:vercel": "cross-env VITE_IS_VERCEL=1 vite build",
"build:lib": "cross-env VITE_LIB_MODE=1 npm-run-all typecheck vite:build dts rollup-dts clean-dts",
"vite:build": "vite build",
"dts": "vue-tsc -p tsconfig.build.json",
"rollup-dts": "api-extractor run --local --verbose",
"clean-dts": "rm -rf ./lib",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "soy prettier-write",
"commit": "soy git-commit",
"cleanup": "soy cleanup",
"update-pkg": "soy ncu",
"update-version": "bumpp --commit --push --tag",
"typecheck": "vue-tsc --noEmit",
"publish-pkg": "pnpm -r publish --access public",
"release": "pnpm soy release && pnpm build:lib && pnpm publish-pkg"
},
"dependencies": {
"@unocss/reset": "0.53.1",
"colord": "2.9.3",
"css-render": "0.15.12"
},
"peerDependencies": {
"@vue/composition-api": "^1.4.6",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@microsoft/api-extractor": "7.35.2",
"@soybeanjs/cli": "^0.6.1",
"@types/node": "20.3.0",
"@vitejs/plugin-vue": "^4.2.3",
"bumpp": "9.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-soybeanjs": "^0.4.9",
"npm-run-all": "4.1.5",
"typescript": "^5.1.3",
"unocss": "^0.53.1",
"vite": "4.3.9",
"vue": "^3.3.4",
"vue-tsc": "^1.6.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}