-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.76 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
68
69
70
71
72
73
74
{
"name": "rsbuild-plugin-dts",
"version": "0.21.5",
"description": "Rsbuild plugin that supports emitting declaration files for TypeScript.",
"homepage": "https://rslib.rs",
"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",
"compiled"
],
"scripts": {
"build": "rslib",
"dev": "rslib --watch",
"prebundle": "prebundle",
"test": "rstest"
},
"dependencies": {
"@ast-grep/napi": "0.37.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@rsbuild/core": "~2.0.7",
"@rslib/tsconfig": "workspace:*",
"@typescript/native-preview": "7.0.0-dev.20260516.1",
"magic-string": "^0.30.21",
"prebundle": "1.6.4",
"rsbuild-plugin-publint": "^0.3.4",
"rslib": "npm:@rslib/core@0.21.5",
"tinyglobby": "^0.2.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7",
"@rsbuild/core": "^1.0.0 || ^2.0.0-0",
"@typescript/native-preview": "7.x",
"typescript": "^5 || ^6"
},
"peerDependenciesMeta": {
"@microsoft/api-extractor": {
"optional": true
},
"@typescript/native-preview": {
"optional": true
},
"typescript": {
"optional": true
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}