-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "dts-buddy",
"version": "0.6.2",
"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",
"kleur": "^4.1.5",
"locate-character": "^3.0.0",
"magic-string": "^0.30.4",
"sade": "^1.8.1",
"tinyglobby": "^0.2.10",
"ts-api-utils": "^1.0.3"
},
"peerDependencies": {
"typescript": ">=5.0.4 <6"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^20.7.2",
"@types/semver": "^7.5.3",
"prettier": "^3.0.3",
"semver": "^7.5.4",
"typescript": "~5.9.3",
"uvu": "^0.5.6"
},
"scripts": {
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"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": "pnpm@9.4.0"
}