-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.88 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@rslib/core",
"version": "0.23.0",
"description": "The Rsbuild-based library development tool.",
"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/core"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./types.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist-types/index.d.ts",
"bin": {
"rslib": "./bin/rslib.js"
},
"files": [
"bin",
"dist",
"dist-types",
"compiled",
"types.d.ts"
],
"scripts": {
"build": "rslib",
"dev": "rslib --watch",
"prebundle": "prebundle",
"test": "rstest"
},
"dependencies": {
"@rsbuild/core": "~2.1.0",
"rsbuild-plugin-dts": "workspace:*"
},
"devDependencies": {
"@module-federation/rsbuild-plugin": "^2.6.0",
"@rslib/tsconfig": "workspace:*",
"@types/fs-extra": "^11.0.4",
"cac": "^7.0.0",
"chokidar": "^5.0.0",
"fs-extra": "^11.3.5",
"memfs": "^4.57.8",
"path-serializer": "0.6.0",
"prebundle": "1.6.5",
"rsbuild-plugin-publint": "^1.0.0",
"rslib": "npm:@rslib/core@0.23.0",
"rslog": "^2.1.3",
"tinyglobby": "^0.2.17",
"tsconfck": "3.1.6",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@microsoft/api-extractor": "^7",
"typescript": "^5 || ^6 || ^7.0.1-0"
},
"peerDependenciesMeta": {
"@microsoft/api-extractor": {
"optional": true
},
"typescript": {
"optional": true
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}