-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.02 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.02 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
{
"name": "vite-plugin-cli-copy",
"type": "module",
"version": "0.0.7",
"packageManager": "pnpm@10.15.1",
"description": "Start the project and automatically copy the cli network url",
"author": "wChenonly",
"license": "MIT",
"homepage": "https://github.com/wChenonly/vite-plugin-cli-copy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wChenonly/vite-plugin-cli-copy.git"
},
"bugs": "https://github.com/wChenonly/vite-plugin-cli-copy/issues",
"keywords": [
"vite",
"cliCopy"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "nr build && nr play",
"dev": "unbuild --stub",
"lint": "eslint .",
"play": "nr -C playground dev",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit 'release: vite-plugin-cli-copy v' && pnpm publish"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"clipboardy": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@antfu/ni": "^25.0.0",
"@types/node": "^24.3.1",
"bumpp": "^10.2.3",
"eslint": "^9.35.0",
"nano-staged": "^0.8.0",
"pnpm": "^10.15.1",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"vite": "^7.1.5"
},
"nano-staged": {
"*.{ts,tsx,js,jsx,vue}": "eslint --fix",
"*.{ts,tsx,js,jsx,vue,less,css,md}": "prettier --write"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}