-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.22 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rstack",
"version": "0.3.2",
"repository": "https://github.com/rstackjs/rstack-cli",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./app": {
"types": "./dist/app.d.ts",
"default": "./dist/app.js"
},
"./test": {
"types": "./dist/test.d.ts",
"default": "./dist/test.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./lint": {
"types": "./dist/lint.d.ts",
"default": "./dist/lint.js"
},
"./types": {
"types": "./types/index.d.ts"
},
"./test/globals": {
"types": "./types/test/globals.d.ts"
},
"./test/importMeta": {
"types": "./types/test/importMeta.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"rs": "./bin/rs.js",
"rstack": "./bin/rs.js"
},
"files": [
"bin",
"dist",
"types",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"test": "rs test"
},
"dependencies": {
"@rsbuild/core": "catalog:",
"@rslib/core": "catalog:",
"@rslint/core": "catalog:",
"@rstest/core": "catalog:",
"prettier": "catalog:",
"tinypool": "catalog:",
"yuku-parser": "catalog:"
},
"devDependencies": {
"@rspress/core": "catalog:",
"@rstackjs/load-config": "catalog:",
"@rstackjs/test-utils": "catalog:",
"@rstest/adapter-rsbuild": "catalog:",
"@rstest/adapter-rslib": "catalog:",
"@types/micromatch": "catalog:",
"@types/node": "catalog:",
"fast-ignore": "catalog:",
"ignore": "catalog:",
"import-meta-resolve": "catalog:",
"is-binary-path": "catalog:",
"lint-staged": "catalog:",
"micromatch": "catalog:",
"rslog": "catalog:",
"sort-package-json": "catalog:",
"tiny-readdir": "catalog:",
"typescript": "catalog:"
},
"peerDependencies": {
"@rspress/core": "^2.0.17"
},
"peerDependenciesMeta": {
"@rspress/core": {
"optional": true
}
},
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}