forked from TencentBlueKing/bkui-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.39 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
{
"name": "bkui-vue",
"version": "0.0.1-beta.14",
"private": true,
"workspaces": {
"packages": [
"packages/!(**.bak)*"
]
},
"scripts": {
"lint": "eslint ./packages ./site --ext .js,.ts,.tsx",
"lint:style": "stylelint --fix ./packages/**/*.{css,less} --custom-syntax",
"lint:fix": "eslint --fix ./packages ./site ./scripts --ext .js,.ts,.tsx",
"test:unit": "jest --passWithNoTests",
"dev": "vite serve site",
"build": "yarn build:library && yarn build:component",
"build:site": "vite build site --mode development",
"build:library": "rimraf dist && cross-env NODE_ENV=production ts-node --project=scripts/tsconfig.scripts.json scripts/build-library.ts",
"build:component": "rimraf lib && npm run generate:declation && cross-env NODE_ENV=production ts-node --project=scripts/tsconfig.scripts.json scripts/build-component/index.ts",
"compile:dev": "node --inspect-brk ./node_modules/.bin/ts-node --project=./scripts/tsconfig.scripts.json ./scripts/build-component/index.ts",
"cz": "git-cz",
"generate:icon": "lerna run --scope @bkui-vue/icon build",
"release": "yarn build && rimraf package.json.bak && cross-env NODE_ENV=production ts-node --project=scripts/tsconfig.scripts.json scripts/release.ts",
"changelog": "conventional-changelog -c .changelog.config.js -p angular -i CHANGELOG.md -s -l",
"cc": "plop --plopfile=./plopfile.js",
"prepare": "husky install",
"generate:declation": "rimraf lib && tsc -p ./scripts/tsconfig.declaration.json"
},
"devDependencies": {
"@babel/core": "~7.14.8",
"@babel/eslint-parser": "~7.14.9",
"@babel/plugin-transform-runtime": "~7.14.5",
"@babel/plugin-transform-typescript": "~7.14.6",
"@babel/preset-env": "~7.14.9",
"@babel/preset-typescript": "~7.14.5",
"@commitlint/cli": "~13.1.0",
"@commitlint/config-conventional": "~13.1.0",
"@rollup/plugin-babel": "~5.3.0",
"@rollup/plugin-commonjs": "~20.0.0",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "~13.0.4",
"@types/jest": "~26.0.23",
"@typescript-eslint/eslint-plugin": "~4.29.0",
"@typescript-eslint/parser": "~4.29.0",
"@vitejs/plugin-vue": "~1.3.0",
"@vitejs/plugin-vue-jsx": "~1.1.7",
"@vue/babel-plugin-jsx": "~1.0.5",
"@vue/babel-preset-jsx": "~1.2.4",
"@vue/compiler-sfc": "~3.1.5",
"@vue/component-compiler-utils": "~3.2.0",
"@vue/eslint-config-standard": "~6.1.0",
"@vue/eslint-config-typescript": "~7.0.0",
"@vue/test-utils": "~2.0.0-rc.12",
"acorn-jsx": "~5.3.1",
"babel-jest": "~27.0.6",
"chalk": "~4.1.2",
"clipboard": "~2.0.8",
"commitizen": "~4.2.4",
"conventional-changelog-cli": "~2.1.1",
"cross-env": "~7.0.3",
"cz-lerna-changelog": "~2.0.3",
"eslint": "~7.32.0",
"eslint-config-tencent": "~1.0.2",
"eslint-plugin-codecc": "~0.0.4",
"eslint-plugin-import": "~2.23.4",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-vue": "~7.15.1",
"highlight.js": "~11.3.1",
"husky": "~7.0.1",
"jest": "~27.0.6",
"jest-transform-stub": "~2.0.0",
"lerna": "~4.0.0",
"less": "~4.1.1",
"lint-staged": "~11.1.1",
"normalize-wheel": "~1.0.1",
"ora": "~5.4.1",
"plop": "~2.7.4",
"postcss": "~8.3.6",
"postcss-less": "~5.0.0",
"prismjs": "~1.25.0",
"rimraf": "~3.0.2",
"rollup": "~2.55.1",
"rollup-plugin-progress": "~1.1.2",
"rollup-plugin-svg": "~2.0.0",
"rollup-plugin-terser": "~7.0.2",
"rollup-plugin-typescript2": "~0.30.0",
"stylelint": "~13.13.1",
"stylelint-order": "~4.1.0",
"stylelint-scss": "~3.20.1",
"ts-jest": "~27.0.4",
"ts-node": "~10.1.0",
"ttypescript": "~1.5.12",
"typescript": "~4.3.5",
"vite": "~2.4.4",
"vue": "3.2.2",
"vue-jest": "~5.0.0-alpha.8",
"vue-router": "~4.0.10",
"vue-types": "~4.0.1"
},
"peerDependencies": {
"vue": "3.2.x",
"vue-types": "~4.0.1"
},
"main": "dist/bkui-vue.umd.js",
"module": "dist/bkui-vue.esm.js",
"typings": "./lib/index.d.ts",
"lint-staged": {
"*.css": "stylelint",
"*.less": "stylelint --fix --syntax=less",
"*.{js,ts,tsx,vue}": [
"eslint --fix",
"git add ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"dependencies": {
"@popperjs/core": "~2.11.0",
"date-fns": "~2.25.0",
"js-calendar": "~1.2.3"
}
}