merge-tsconfigs 0.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.
package/package.json ADDED
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "merge-tsconfigs",
3
+ "version": "0.0.2",
4
+ "description": "A CLI and node scripts to merge 2 or more tsconfig files 🛣️",
5
+ "type": "module",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.cjs"
12
+ }
13
+ },
14
+ "bin": {
15
+ "codependence": "dist/index.cjs",
16
+ "codep": "dist/index.cjs"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup src/index.ts --format esm,cjs --dts",
23
+ "clean": "rimraf dist config",
24
+ "commit": "git-cz",
25
+ "commit-msg": "commitlint --edit $1",
26
+ "lint": "eslint src --ext .ts",
27
+ "lint-fix": "pnpm run lint --fix",
28
+ "pre-commit": "lint-staged --quiet && pnpm run test",
29
+ "prepublishOnly": "pnpm run test && pnpm run build",
30
+ "release": "release-it",
31
+ "setup:config": "mkdir config && cd config npx tsc --init",
32
+ "test": "echo 'todo!'",
33
+ "typecheck": "tsc --noEmit",
34
+ "update": "codependence --update"
35
+ },
36
+ "dependencies": {
37
+ "@types/fs-extra": "^11.0.1",
38
+ "commander": "^9.5.0",
39
+ "cosmiconfig": "^8.0.0",
40
+ "fast-glob": "^3.2.12",
41
+ "fs-extra": "^11.1.0",
42
+ "ramda": "^0.28.0",
43
+ "ts-transformer-keys": "^0.4.4",
44
+ "tslib": "^2.4.1",
45
+ "ttypescript": "^1.5.15"
46
+ },
47
+ "devDependencies": {
48
+ "@commitlint/cli": "^17.4.2",
49
+ "@commitlint/config-conventional": "^17.4.2",
50
+ "@types/gradient-string": "^1.1.2",
51
+ "@types/node": "^18.11.18",
52
+ "@types/ramda": "^0.28.23",
53
+ "@typescript-eslint/eslint-plugin": "^5.48.1",
54
+ "@typescript-eslint/parser": "^5.48.1",
55
+ "codependence": "^0.2.6",
56
+ "eslint": "^8.32.0",
57
+ "eslint-config-prettier": "^8.6.0",
58
+ "gradient-string": "^2.0.2",
59
+ "husky": "^8.0.3",
60
+ "is-ci": "^3.0.1",
61
+ "lint-staged": "^13.1.0",
62
+ "path-exists-cli": "^2.0.0",
63
+ "prettier": "^2.8.3",
64
+ "release-it": "^15.6.0",
65
+ "rimraf": "^3.0.2",
66
+ "stdouttojson": "^0.7.1",
67
+ "ts-node": "^10.9.1",
68
+ "tsup": "^6.5.0",
69
+ "turbo": "^1.7.0",
70
+ "typescript": "^4.9.4",
71
+ "vite": "^3.2.5",
72
+ "vitest": "^0.25.8"
73
+ },
74
+ "commitlint": {
75
+ "extends": [
76
+ "@commitlint/config-conventional"
77
+ ]
78
+ },
79
+ "lint-staged": {
80
+ "src/**/*.ts": [
81
+ "eslint --fix"
82
+ ]
83
+ },
84
+ "release-it": {
85
+ "git": {
86
+ "commitMessage": "chore: release v%s"
87
+ }
88
+ },
89
+ "engines": {
90
+ "node": ">=16.0.0",
91
+ "pnpm": ">=7.0.0"
92
+ },
93
+ "keywords": [
94
+ "tsconfig",
95
+ "typescript",
96
+ "tsconfig-merge",
97
+ "tsconfig-cli",
98
+ "ts"
99
+ ],
100
+ "repository": {
101
+ "type": "git",
102
+ "url": "git+https://github.com/yowainwright/merge-tsconfig.git"
103
+ },
104
+ "author": "Jeff Wainwright <https:jeffry.in> (yowainwright@gmail.com)",
105
+ "license": "MIT",
106
+ "bugs": {
107
+ "url": "https://github.com/yowainwright/merge-tsconfig/issues"
108
+ }
109
+ }