-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 854 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 854 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
{
"name": "userscript-template",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "A template for creating a userscript",
"author": "vaaski <admin@vaa.ski>",
"module": "index.ts",
"scripts": {
"lint": "eslint .",
"dev": "bun run build/index.ts --watch",
"build": "bun run build/index.ts",
"customize": "bun run build/customize.ts"
},
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@antfu/eslint-config": "^9.2.0",
"@clack/prompts": "^1.7.0",
"@types/bun": "latest",
"@violentmonkey/types": "^0.3.4",
"eslint": "^10.8.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-vaaski": "^3.1.1"
},
"userscript": {
"icon": "https://www.google.com/s2/favicons?sz=64&domain=google.com",
"match": [
"http://localhost:3000/*"
],
"grant": [
"GM.registerMenuCommand"
]
}
}