-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.68 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.68 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
{
"name": "@fesjs/traction-widget",
"version": "1.12.9",
"description": "集合大型中台项目使用到的通用组件和工具函数",
"scripts": {
"docs:dev": "npm run build && node docs/.vitepress/scripts/generate-doc.js && vitepress dev docs",
"docs:build": "npm run build && node docs/.vitepress/scripts/generate-doc.js && vitepress build docs",
"docsBuild": "npm run build && node docs/.vitepress/scripts/generate-doc.js && vitepress build docs",
"prepare": "husky install",
"commit": "git-cz",
"build:esm": "node scripts/build-esm.js",
"build:esm-browser": "node scripts/build-browser.mjs",
"build:umd": "node scripts/build-umd.js",
"build:type": "node scripts/build-types.js",
"build:style": "node scripts/build-style.js",
"build.unix": "rm -rf packages/traction-widget/dist packages/traction-widget/es && npm run build:esm && npm run build:type && npm run build:style && npm run build:umd && npm run build:esm-browser",
"release": "npm run build && node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build.win": "npm run build:esm && npm run build:type && npm run build:style && npm run build:umd && npm run build:esm-browser",
"build": "node scripts/build.js"
},
"files": [
"dist",
"es",
"icon",
"types"
],
"repository": {
"type": "git",
"url": "git@github.com:WeBankFinTech/TractionWidget.git"
},
"keywords": [
"traction",
"widget"
],
"author": "lucaszhu@webank.com",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/plugin-syntax-jsx": "7.18.6",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@betit/rollup-plugin-rename-extensions": "0.1.0",
"@commitlint/config-conventional": "17.2.0",
"@fesjs/fes-design": "0.8.56",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"@vitejs/plugin-vue-jsx": "3.0.0",
"@vue/babel-plugin-jsx": "1.1.1",
"@vue/repl": "3.4.0",
"autoprefixer": "10.4.13",
"cheap-watch": "1.0.4",
"commitlint": "17.3.0",
"conventional-changelog-cli": "2.2.2",
"cz-conventional-changelog": "3.3.0",
"enquirer": "2.3.6",
"eslint": "8.34.0",
"eslint-config-standard-with-typescript": "34.0.0",
"eslint-config-typescript": "3.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript": "0.14.0",
"eslint-plugin-vue": "9.9.0",
"fs-extra": "11.1.0",
"glob": "^13.0.6",
"husky": "8.0.2",
"jest": "29.4.3",
"lerna": "6.5.1",
"less": "4.1.3",
"lint-staged": "13.1.0",
"lodash-es": "4.17.21",
"prettier": "2.8.4",
"rollup": "3.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-vue": "6.0.0",
"shiki": "0.12.1",
"terser": "5.16.4",
"ts-morph": "18.0.0",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitepress": "^1.6.4",
"vitepress-plugin-llmstxt": "^0.5.1",
"vue": "^3.3.4",
"vue-eslint-parser": "9.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue,fes,wxa}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
]
}