-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "tsconfig-to-swcconfig",
"version": "2.8.1",
"description": "Convert tsconfig to swc config",
"keywords": ["swc", "tsconfig", "converter", "config"],
"homepage": "https://github.com/Songkeys/tsconfig-to-swcconfig#readme",
"bugs": {
"url": "https://github.com/Songkeys/tsconfig-to-swcconfig/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Songkeys/tsconfig-to-swcconfig.git"
},
"license": "MIT",
"author": "Songkeys",
"main": "dist/index.js",
"bin": {
"t2s": "dist/cli.js",
"tsconfig-to-swcconfig": "dist/cli.js"
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test"
},
"simple-git-hooks": {
"pre-commit": "npm run format && npm run lint:fix"
},
"dependencies": {
"@fastify/deepmerge": "^1.3.0",
"get-tsconfig": "^4.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@swc/core": "^1.3.89",
"@tsconfig/node12": "^12.1.0",
"@types/node": "^20.7.0",
"@types/source-map-support": "^0.5.8",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2"
}
}