@kep-platform/business-component 0.5.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +79 -80
package/package.json CHANGED
@@ -1,83 +1,82 @@
1
1
  {
2
- "name": "@kep-platform/business-component",
3
- "version": "0.5.0",
4
- "description": "A react library developed with dumi",
5
- "license": "MIT",
6
- "module": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "files": [
9
- "dist"
2
+ "name": "@kep-platform/business-component",
3
+ "version": "1.0.2",
4
+ "description": "A react library developed with dumi",
5
+ "license": "MIT",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "father build",
13
+ "build:watch": "father dev",
14
+ "dev": "dumi dev",
15
+ "docs:build": "dumi build",
16
+ "docs:preview": "dumi preview",
17
+ "doctor": "father doctor",
18
+ "lint": "npm run lint:es && npm run lint:css",
19
+ "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
20
+ "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
21
+ "prepare": "dumi setup",
22
+ "prepublishOnly": "npm run build",
23
+ "start": "npm run dev"
24
+ },
25
+ "commitlint": {
26
+ "extends": [
27
+ "@commitlint/config-conventional"
28
+ ]
29
+ },
30
+ "lint-staged": {
31
+ "*.{md,json}": [
32
+ "prettier --write --no-error-on-unmatched-pattern"
10
33
  ],
11
- "scripts": {
12
- "build": "father build",
13
- "build:watch": "father dev",
14
- "dev": "dumi dev",
15
- "docs:build": "dumi build",
16
- "docs:preview": "dumi preview",
17
- "doctor": "father doctor",
18
- "lint": "npm run lint:es && npm run lint:css",
19
- "lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
20
- "lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
21
- "prepare": "dumi setup",
22
- "prepublishOnly": "npm run build",
23
- "postpublish": "cnpm sync @kep-platform/business-component",
24
- "start": "npm run dev"
25
- },
26
- "commitlint": {
27
- "extends": [
28
- "@commitlint/config-conventional"
29
- ]
30
- },
31
- "lint-staged": {
32
- "*.{md,json}": [
33
- "prettier --write --no-error-on-unmatched-pattern"
34
- ],
35
- "*.{css,less}": [
36
- "stylelint --fix",
37
- "prettier --write"
38
- ],
39
- "*.{js,jsx}": [
40
- "eslint --fix",
41
- "prettier --write"
42
- ],
43
- "*.{ts,tsx}": [
44
- "eslint --fix",
45
- "prettier --parser=typescript --write"
46
- ]
47
- },
48
- "dependencies": {
49
- "@kep-platform/basic-component": "^0.5.0"
50
- },
51
- "devDependencies": {
52
- "@commitlint/cli": "^17.1.2",
53
- "@commitlint/config-conventional": "^17.1.0",
54
- "@types/react": "^18.0.0",
55
- "@types/react-dom": "^18.0.0",
56
- "@umijs/lint": "^4.0.0",
57
- "dumi": "^2.3.0",
58
- "eslint": "^8.23.0",
59
- "father": "^4.1.0",
60
- "husky": "^8.0.1",
61
- "lint-staged": "^13.0.3",
62
- "prettier": "^2.7.1",
63
- "prettier-plugin-organize-imports": "^3.0.0",
64
- "prettier-plugin-packagejson": "^2.2.18",
65
- "react": "^18.0.0",
66
- "react-dom": "^18.0.0",
67
- "stylelint": "^14.9.1"
68
- },
69
- "peerDependencies": {
70
- "@ant-design/icons": ">=5.0.0",
71
- "antd": ">=5.0.0",
72
- "axios": ">=1.0.0",
73
- "react": ">=16.9.0",
74
- "react-dnd": ">=16.0.1",
75
- "react-dnd-html5-backend": ">=16.0.1",
76
- "react-dom": ">=16.9.0"
77
- },
78
- "publishConfig": {
79
- "access": "public"
80
- },
81
- "authors": [],
82
- "gitHead": "195f0a61ad41fc052a3d273cc678ff92cab57c19"
34
+ "*.{css,less}": [
35
+ "stylelint --fix",
36
+ "prettier --write"
37
+ ],
38
+ "*.{js,jsx}": [
39
+ "eslint --fix",
40
+ "prettier --write"
41
+ ],
42
+ "*.{ts,tsx}": [
43
+ "eslint --fix",
44
+ "prettier --parser=typescript --write"
45
+ ]
46
+ },
47
+ "dependencies": {
48
+ "@kep-platform/basic-component": "^1.0.2"
49
+ },
50
+ "devDependencies": {
51
+ "@commitlint/cli": "^17.1.2",
52
+ "@commitlint/config-conventional": "^17.1.0",
53
+ "@types/react": "^18.0.0",
54
+ "@types/react-dom": "^18.0.0",
55
+ "@umijs/lint": "^4.0.0",
56
+ "dumi": "^2.3.0",
57
+ "eslint": "^8.23.0",
58
+ "father": "^4.1.0",
59
+ "husky": "^8.0.1",
60
+ "lint-staged": "^13.0.3",
61
+ "prettier": "^2.7.1",
62
+ "prettier-plugin-organize-imports": "^3.0.0",
63
+ "prettier-plugin-packagejson": "^2.2.18",
64
+ "react": "^18.0.0",
65
+ "react-dom": "^18.0.0",
66
+ "stylelint": "^14.9.1"
67
+ },
68
+ "peerDependencies": {
69
+ "@ant-design/icons": ">=5.0.0",
70
+ "antd": ">=5.0.0",
71
+ "axios": ">=1.0.0",
72
+ "react": ">=16.9.0",
73
+ "react-dnd": ">=16.0.1",
74
+ "react-dnd-html5-backend": ">=16.0.1",
75
+ "react-dom": ">=16.9.0"
76
+ },
77
+ "publishConfig": {
78
+ "access": "public"
79
+ },
80
+ "authors": [],
81
+ "gitHead": "9d080836f027cb44d6fdae1654c19ec9bfc55488"
83
82
  }