-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "rspack-plugin-cli-copy",
"version": "0.0.8",
"packageManager": "pnpm@10.6.2",
"description": "Start the project and automatically copy the cli network url",
"author": "wChenonly",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/rspack-contrib/rspack-plugin-cli-copy",
"repository": {
"type": "git",
"url": "git+https://github.com/rspack-contrib/rspack-plugin-cli-copy.git"
},
"bugs": "https://github.com/rspack-contrib/rspack-plugin-cli-copy/issues",
"keywords": [
"rspack",
"rsbuild",
"cliCopy"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"play:rsbuild": "nr build && nr -C playground/rsbuild dev",
"play:rspack": "nr build && nr -C playground/rspack dev",
"build": "tsup",
"release": "bumpp --commit 'release: rspack-plugin-cli-copy v'"
},
"dependencies": {
"@napi-rs/clipboard": "^1.1.2"
},
"devDependencies": {
"@antfu/ni": "^24.1.0",
"@rsbuild/core": "^1.0.0-alpha.5",
"@rspack/core": "^1.2.7",
"@types/node": "^22.13.10",
"bumpp": "^10.0.3",
"nano-staged": "^0.8.0",
"pnpm": "^10.6.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"nano-staged": {
"*.{ts,tsx,js,jsx,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}