@deot/dev-deps 1.1.1

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 (3) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +10 -0
  3. package/package.json +16 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @deot/dev-deps ChangeLog
2
+
3
+ ## v1.1.1
4
+
5
+ _2023-04-28_
6
+
7
+ ### Features
8
+
9
+ - feat: combine dependencies & standalone used ([9f21cf1](https://github.com/deot/dev/commit/9f21cf1bf47517d3899b443493a3a8f825e95ec9))
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @deot/dev-deps
2
+
3
+ 仅仅是为了方便统一版本,把以下依赖合并在一起,是一个完全独立的包,不使用时,需在项目单独引入
4
+
5
+ - `eslint`
6
+ - `eslint-watch`
7
+ - `husky`
8
+ - `lint-staged`
9
+ - `tsx`
10
+ - `typescript`
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@deot/dev-deps",
3
+ "version": "1.1.1",
4
+ "license": "MIT",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "dependencies": {
9
+ "eslint": "^8.38.0",
10
+ "eslint-watch": "^8.0.0",
11
+ "husky": "^8.0.3",
12
+ "lint-staged": "^13.2.1",
13
+ "tsx": "^3.12.6",
14
+ "typescript": "^5.0.4"
15
+ }
16
+ }