ts-builds 2.6.4 → 2.7.0
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.
- package/package.json +20 -11
- package/tsconfig.base.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-builds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Shared TypeScript configuration files for library templates. Provides standardized ESLint, Prettier, Vitest, TypeScript, and build configs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -62,23 +62,23 @@
|
|
|
62
62
|
"eslint-config-functype": "^2.2.0",
|
|
63
63
|
"eslint-plugin-functype": "^2.2.0",
|
|
64
64
|
"eslint-plugin-prettier": "^5.5.5",
|
|
65
|
-
"eslint-plugin-simple-import-sort": "^
|
|
66
|
-
"functype": "^0.
|
|
65
|
+
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
66
|
+
"functype": "^0.57.0",
|
|
67
67
|
"functype-os": "^0.4.2",
|
|
68
|
-
"globals": "^17.
|
|
69
|
-
"prettier": "^3.8.
|
|
68
|
+
"globals": "^17.5.0",
|
|
69
|
+
"prettier": "^3.8.3",
|
|
70
70
|
"rimraf": "^6.1.3",
|
|
71
71
|
"ts-node": "^10.9.2",
|
|
72
72
|
"typescript": "^6.0.2",
|
|
73
|
-
"typescript-eslint": "^8.58.
|
|
73
|
+
"typescript-eslint": "^8.58.2",
|
|
74
74
|
"vitest": "^4.1.4"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"tsdown": "^0.21.
|
|
77
|
+
"tsdown": "^0.21.8"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"tsdown": "^0.x",
|
|
81
|
-
"vite": "^
|
|
81
|
+
"vite": "^8.x"
|
|
82
82
|
},
|
|
83
83
|
"peerDependenciesMeta": {
|
|
84
84
|
"tsdown": {
|
|
@@ -100,6 +100,15 @@
|
|
|
100
100
|
"test": "node dist/cli.js test",
|
|
101
101
|
"test:watch": "vitest",
|
|
102
102
|
"build": "node dist/cli.js build",
|
|
103
|
-
"dev": "node dist/cli.js dev"
|
|
104
|
-
|
|
105
|
-
}
|
|
103
|
+
"dev": "node dist/cli.js dev",
|
|
104
|
+
"prepublishOnly": "pnpm validate:bootstrap"
|
|
105
|
+
},
|
|
106
|
+
"pnpm": {
|
|
107
|
+
"peerDependencyRules": {
|
|
108
|
+
"allowedVersions": {
|
|
109
|
+
"eslint": "10"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
|
|
114
|
+
}
|