-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.15 KB
/
package.json
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
{
"name": "tscw-config",
"version": "0.0.0-semantically-released",
"author": "alveifbklsiu259 <https://github.com/alveifbklsiu259>",
"license": "MIT",
"description": "Run tsc on files with tsconfig respected",
"keywords": [
"typescript",
"tsc",
"CLI"
],
"repository": {
"type": "git",
"url": "https://github.com/alveifbklsiu259/tscw-config"
},
"bin": {
"tscw": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/ .lint-cache/.tsbuildinfo",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm build",
"test": "jest --verbose",
"test:unit": "jest --testPathPattern=test/unit",
"test:integration": "jest --testPathPattern=test/integration",
"test:e2e": "jest --testPathPattern=test/e2e",
"test:coverage": "jest --coverage --collectCoverageFrom \"src/**/*.ts\"",
"test:clean": "jest --clearCache",
"knip": "knip --config ./knip.config.mjs",
"check-format": "prettier . --ignore-unknown --check --cache --cache-strategy metadata --cache-location .lint-cache/.prettiercache",
"check-spelling": "cspell . --no-progress --show-context --cache --cache-strategy metadata --cache-location .lint-cache/.cspellcache",
"lint-markdown": "markdownlint \"**/*.md\"",
"lint": "eslint . --report-unused-disable-directives",
"lint-commit": "commitlint --from HEAD~1",
"type-check": "node ./dist/cli.js --noEmit -p tsconfig.build.json --includeDeclarationDir @types",
"get-eslint-config-types": "bash scripts/get_eslint_config_types.sh",
"validate-codecov": "curl -X POST --data-binary @.codecov.yml https://codecov.io/validate",
"prepare": "husky"
},
"peerDependencies": {
"typescript": ">=2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/format": "^19.3.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint-plugin-markdown": "^2.0.2",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"@typescript-eslint/utils": "^8.3.0",
"babel-jest": "^29.7.0",
"cspell": "^8.14.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-markdown": "^5.1.0",
"expect": "^29.7.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"json-schema-to-typescript": "^15.0.2",
"knip": "^5.29.1",
"lint-staged": "^15.2.9",
"markdownlint-cli": "^0.41.0",
"pidtree": "^0.6.0",
"prettier": "^3.3.3",
"prettier-plugin-sh": "^0.14.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
},
"dependencies": {
"strip-json-comments": "^5.0.1"
}
}