-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "rstack",
"version": "0.6.1",
"description": "One CLI for JavaScript development, powered by Rstack.",
"homepage": "https://rstack.rs",
"bugs": {
"url": "https://github.com/rstackjs/rstack-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstackjs/rstack-cli.git",
"directory": "packages/rstack"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/configExports.d.ts",
"default": "./dist/configExports.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",
"binding.cjs",
"binding.d.cts",
"dist",
"docs",
"types",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"build": "rslib",
"build:native": "napi build --config-path napi.json --platform --manifest-path ../../Cargo.toml --package rstack-binding --package-json-path package.json --output-dir . --js binding.cjs --dts binding.d.cts",
"build:native:ci": "napi build --config-path napi.json --platform --profile ci --manifest-path ../../Cargo.toml --package rstack-binding --package-json-path package.json --output-dir . --js binding.cjs --dts binding.d.cts",
"build:native:release": "napi build --config-path napi.json --platform --release --manifest-path ../../Cargo.toml --package rstack-binding --package-json-path package.json --output-dir . --js binding.cjs --dts binding.d.cts -- --config ../../.cargo/release.toml",
"dev": "rslib -w",
"package:native": "napi create-npm-dirs --config-path napi.json",
"test": "rs test"
},
"dependencies": {
"@rsbuild/core": "catalog:",
"@rslib/core": "catalog:",
"@rslint/core": "catalog:",
"@rstest/core": "catalog:",
"prettier": "catalog:",
"tinypool": "catalog:",
"yuku-parser": "catalog:"
},
"devDependencies": {
"@napi-rs/cli": "catalog:",
"@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-json-stable-stringify": "catalog:",
"import-meta-resolve": "catalog:",
"is-binary-path": "catalog:",
"lint-staged": "catalog:",
"micromatch": "catalog:",
"prettier-plugin-svelte": "catalog:",
"rslog": "catalog:",
"sort-package-json": "catalog:",
"svelte": "catalog:",
"tiny-readdir": "catalog:",
"typescript": "catalog:",
"vscode-languageserver": "catalog:",
"vscode-languageserver-textdocument": "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/"
}
}