-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 922 Bytes
/
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
{
"name": "esbuild-plugin-tsc",
"version": "0.4.0",
"description": "An esbuild plugin which uses tsc to compile typescript files.",
"main": "src/index.js",
"types": "./types.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaschaaf/esbuild-plugin-tsc.git"
},
"keywords": [
"esbuild",
"esbuild-plugin",
"tsc",
"typescript"
],
"author": "Thomas Schaaf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomaschaaf/esbuild-plugin-tsc/issues"
},
"homepage": "https://github.com/thomaschaaf/esbuild-plugin-tsc#readme",
"jest": {
"verbose": true
},
"dependencies": {
"strip-comments": "^2.0.1"
},
"devDependencies": {
"jest": "^28.1.1",
"prettier": "^2.7.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^4.0.0 || ^5.0.0"
}
}