-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "dts-buddy",
"version": "0.5.4",
"description": "A tool for creating .d.ts bundles",
"repository": {
"type": "git",
"url": "https://github.com/Rich-Harris/dts-buddy"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@jridgewell/source-map": "^0.3.5",
"@jridgewell/sourcemap-codec": "^1.4.15",
"globrex": "^0.1.2",
"kleur": "^4.1.5",
"locate-character": "^3.0.0",
"magic-string": "^0.30.4",
"sade": "^1.8.1",
"tiny-glob": "^0.2.9",
"ts-api-utils": "^1.0.3"
},
"peerDependencies": {
"typescript": ">=5.0.4 <5.8"
},
"devDependencies": {
"@types/globrex": "^0.1.2",
"@types/node": "^20.7.2",
"@types/semver": "^7.5.3",
"prettier": "^3.0.3",
"semver": "^7.5.4",
"typescript": "~5.7.2",
"uvu": "^0.5.6"
},
"scripts": {
"prepublishOnly": "node src/cli.js --debug debug && tsc types/index.d.ts --esModuleInterop",
"test": "node test/test.js",
"check": "tsc --noEmit --emitDeclarationOnly false",
"lint": "prettier --ignore-path .gitignore --ignore-path .prettierignore --cache --check .",
"format": "pnpm lint --write"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"bin": "./src/cli.js",
"packageManager": "[email protected]"
}