-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.08 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
{
"name": "vite-userscript-plugin",
"type": "module",
"version": "2.0.0",
"packageManager": "pnpm@11.22.0",
"author": {
"name": "Vitalij Ryndin",
"url": "https://github.com/crashmax-dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/greasify/vite-userscript-plugin.git"
},
"bugs": {
"url": "https://github.com/greasify/vite-userscript-plugin/issues"
},
"keywords": [
"vite",
"vite-plugin",
"userscript",
"tampermonkey",
"greasemonkey",
"violentmonkey"
],
"exports": {
".": "./dist/index.js",
"./virtual": "./virtual.d.ts",
"./types/tampermonkey": "./types/tampermonkey.d.ts",
"./types/greasemonkey": "./types/greasemonkey.d.ts",
"./types/violentmonkey": "./types/violentmonkey.d.ts"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"types/*.d.ts",
"virtual.d.ts"
],
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsdown --watch",
"dev:examples": "turbo run dev --filter=./examples/*",
"build": "tsdown",
"build:examples": "turbo run build --filter=./examples/*",
"test": "vitest",
"test:ui": "vitest --ui --watch",
"type-check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p scripts/tsconfig.json && turbo run type-check --filter=./examples/*",
"sync-types": "node scripts/sync-types.ts",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache"
},
"peerDependencies": {
"vite": "^8.0.0"
},
"dependencies": {
"open": "11.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "7.2.0",
"@sveltejs/vite-plugin-svelte": "catalog:",
"@types/node": "22.20.1",
"@typescript/native": "npm:typescript@7.0.2",
"@vitejs/plugin-vue": "catalog:",
"@vitest/ui": "4.1.11",
"eslint": "9.39.2",
"eslint-plugin-format": "2.0.1",
"prettier-plugin-css-order": "2.2.0",
"svelte": "catalog:",
"tsdown": "0.22.14",
"turbo": "2.10.11",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vite": "catalog:",
"vitest": "4.1.11",
"vue": "catalog:"
}
}