-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.99 KB
/
package.json
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.6",
"packageManager": "[email protected]",
"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"
},
"dependencies": {
"clipboardy": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.0",
"@antfu/ni": "^0.21.10",
"@types/node": "^20.9.5",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"nano-staged": "^0.8.0",
"pnpm": "^8.10.5",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vite": "^5.0.2"
},
"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/"
}
}