-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 919 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": "type-mirror",
"type": "module",
"version": "0.0.1",
"author": "4xii",
"homepage": "https://github.com/4xii/type-mirror/blob/main/README.md",
"bugs": {
"url": "https://github.com/4xii/type-mirror/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4xii/type-mirror.git"
},
"files": [
"dist"
],
"bin": {
"typemir": "./cli.mjs"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup --clean --dts",
"prepare:type": "tsup --dts-only",
"stub": "tsup --watch --onSuccess 'tsup --dts-only'",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^18.19.31",
"vitest": "^1.6.0"
},
"dependencies": {
"commander": "^12.0.0",
"json-to-ts": "^2.1.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-formatter": "^7.2.2",
"unconfig": "^0.3.13"
}
}