-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rsbuild-plugin-dts",
"version": "0.6.5",
"description": "Rsbuild plugin that supports emitting declaration files for TypeScript.",
"homepage": "https://lib.rsbuild.dev",
"bugs": {
"url": "https://github.com/web-infra-dev/rslib/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-infra-dev/rslib.git",
"directory": "packages/plugin-dts"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
},
"dependencies": {
"@ast-grep/napi": "^0.37.0",
"magic-string": "^0.30.17",
"picocolors": "1.1.1",
"tinyglobby": "^0.2.12",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.52.4",
"@rsbuild/core": "1.3.8",
"@rslib/tsconfig": "workspace:*",
"rsbuild-plugin-publint": "^0.3.0",
"rslib": "npm:@rslib/core@0.6.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7",
"@rsbuild/core": "1.x",
"typescript": "^5"
},
"peerDependenciesMeta": {
"@microsoft/api-extractor": {
"optional": true
},
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=16.7.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}