-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 974 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 974 Bytes
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
{
"name": "@toil/gm-types",
"description": "All-in-One GM API types (Greasemonkey, Tampermonkey, Violentmonkey and etc)",
"version": "1.0.4",
"author": "Toil",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyhalight/gm-types"
},
"bugs": {
"url": "https://github.com/ilyhalight/gm-types/issues"
},
"homepage": "https://github.com/ilyhalight/gm-types#readme",
"types": "src/v4.d.ts",
"type": "module",
"files": [
"src"
],
"exports": {
"./v4": {
"types": "./src/v4.d.ts"
},
"./v3": {
"types": "./src/v3.d.ts"
},
"./types/*": {
"types": "./src/*.ts"
}
},
"keywords": [
"gm",
"types",
"greasemonkey",
"tampermonkey",
"violentmonkey",
"userscripts",
"monkey"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"bun-types": "^1.2.11"
},
"peerDependencies": {
"typescript": "^5.8.2"
}
}