-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.17 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.17 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
{
"name": "userscript-project-template",
"version": "1.0.0",
"description": "A modern, production-ready template for building UserScripts using TypeScript and Vite with mobile browser support, touch gestures, and responsive design for Tampermonkey and Greasemonkey scripts.",
"scripts": {
"dev": "vite build --watch --mode development",
"dev:header": "bun run build-userScriptHeader -- development",
"dev:build": "vite build --mode development && bun run build-userScriptHeader -- development",
"build": "vite build && bun run build-userScriptHeader -- production",
"build:prod": "bun run clean && vite build --mode production && bun run build-userScriptHeader -- production",
"build-userScriptHeader": "bun ./tools/userScriptHeader.ts",
"validate": "bun run type-check && bun run lint",
"lint": "eslint src/ --ext .ts,.tsx",
"lint:fix": "eslint src/ --ext .ts,.tsx --fix",
"format": "prettier --write \"{src,tools}/**/*.{ts,tsx,json}\" \"*.{json,md,js,ts}\"",
"type-check": "tsc --noEmit",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosunLP/UserScriptProjectTemplate.git"
},
"keywords": [
"userscript",
"tampermonkey",
"greasemonkey",
"typescript",
"template",
"vite",
"browser-automation",
"web-enhancement",
"browser-scripting",
"mobile-support",
"touch-gestures",
"responsive-design",
"mobile-browser",
"kiwi-browser",
"edge-mobile"
],
"author": "Jonas Pfalzgraf <info@josunlp.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JosunLP/UserScriptProjectTemplate/issues"
},
"homepage": "https://github.com/JosunLP/UserScriptProjectTemplate#readme",
"engines": {
"node": ">=24.0.0",
"bun": ">=1.3.11"
},
"devDependencies": {
"@types/node": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"prettier": "^3.8.3",
"rimraf": "^5.0.10",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@bquery/bquery": "1.10.0"
}
}