-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "vite-userscript-plugin",
"version": "1.11.0",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"types"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:ui": "vitest --ui --watch",
"dev:examples": "turbo run dev --filter=./examples/*",
"build:examples": "turbo run build --filter=./examples/*",
"format": "prettier --write --ignore-unknown **"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/vite-userscript-plugin.git"
},
"keywords": [
"vite",
"vite-plugin",
"userscript",
"tampermonkey",
"greasemonkey",
"violentmonkey"
],
"author": {
"name": "Vitalij Ryndin",
"email": "[email protected]",
"url": "https://crashmax.ru"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/crashmax-dev/vite-userscript-plugin/issues"
},
"dependencies": {
"get-port": "7.1.0",
"open": "10.1.0",
"picocolors": "1.1.0",
"serve-handler": "6.1.5",
"websocket": "1.0.35"
},
"devDependencies": {
"@crashmax/prettier-config": "5.0.2",
"@crashmax/tsconfig": "2.1.0",
"@types/node": "22.5.4",
"@types/serve-handler": "6.1.4",
"@types/websocket": "1.0.10",
"@vitest/ui": "2.0.5",
"tsup": "8.2.4",
"turbo": "2.1.1",
"typescript": "5.5.4",
"vite": "5.4.3",
"vite-plugin-dts": "4.1.1",
"vitest": "2.0.5"
},
"peerDependencies": {
"vite": ">=3.0.0"
}
}