@henrikvilhelmberglund/vite-plugin-monkey 4.0.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@henrikvilhelmberglund/vite-plugin-monkey",
3
+ "version": "4.0.4",
4
+ "description": "A vite plugin server and build your.user.js for userscript engine like Tampermonkey and Violentmonkey and Greasemonkey",
5
+ "main": "dist/node/index.mjs",
6
+ "types": "dist/node/index.d.ts",
7
+ "type": "module",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "import": "./dist/node/index.mjs",
12
+ "types": "./dist/node/index.d.ts"
13
+ },
14
+ "./dist/client": {
15
+ "import": "./dist/client/index.mjs",
16
+ "types": "./dist/client/index.d.ts"
17
+ },
18
+ "./dist/native": {
19
+ "import": "./dist/native/index.mjs",
20
+ "types": "./dist/native/index.d.ts"
21
+ },
22
+ "./client": {
23
+ "types": "./client.d.ts"
24
+ },
25
+ "./global": {
26
+ "types": "./global.d.ts"
27
+ }
28
+ },
29
+ "sideEffects": false,
30
+ "files": [
31
+ "dist",
32
+ "global.d.ts",
33
+ "client.d.ts"
34
+ ],
35
+ "publishConfig": {
36
+ "registry": "https://registry.npmjs.org/"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup && tsx ./scripts/transform_type.ts",
40
+ "build:watch": "tsup --watch"
41
+ },
42
+ "keywords": [
43
+ "vite",
44
+ "vite-plugin",
45
+ "monkey",
46
+ "Tampermonkey",
47
+ "Violentmonkey",
48
+ "Greasemonkey",
49
+ "userscript",
50
+ "greasyfork",
51
+ "typescript"
52
+ ],
53
+ "author": "lisonge, Henrik Berglund",
54
+ "license": "MIT",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "git+https://github.com/henrikvilhelmberglund/vite-plugin-monkey.git",
58
+ "directory": "packages/vite-plugin-monkey"
59
+ },
60
+ "bugs": {
61
+ "url": "https://github.com/henrikvilhelmberglund/vite-plugin-monkey/issues"
62
+ },
63
+ "homepage": "https://github.com/henrikvilhelmberglund/vite-plugin-monkey#readme",
64
+ "dependencies": {
65
+ "acorn-walk": "^8.3.1",
66
+ "cross-spawn": "^7.0.3",
67
+ "htmlparser2": "^9.0.0",
68
+ "import-meta-resolve": "^4.1.0",
69
+ "magic-string": "^0.30.5",
70
+ "mrmime": "^1.0.1",
71
+ "open": "^9.1.0",
72
+ "picocolors": "^1.0.0",
73
+ "systemjs": "^6.14.2"
74
+ },
75
+ "devDependencies": {
76
+ "@types/cross-spawn": "^6.0.6"
77
+ },
78
+ "peerDependencies": {
79
+ "vite": "^5.0.0"
80
+ },
81
+ "peerDependenciesMeta": {
82
+ "vite": {
83
+ "optional": true
84
+ }
85
+ },
86
+ "volta": {
87
+ "extends": "../../package.json"
88
+ }
89
+ }