mirror of
https://github.com/JosunLP/UserScriptProjectTemplate.git
synced 2025-06-21 10:11:07 +00:00

Switching from Webpack to vite, upgrading the version of the logo file and updating dependencies
39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "userscript-project-template",
|
|
"version": "0.0.1",
|
|
"description": "A user script project template to create large and structured TypeScript projects for Tampermonkey or Greasemonkey. It is intended to form a scalable base and is primarily aimed at the Ingress community.",
|
|
"main": "index.ts",
|
|
"module": "node",
|
|
"scripts": {
|
|
"build": "vite build && npm run build-userScriptHeader",
|
|
"build-tooling": "tsc ./tools/userScriptHeader.ts --resolveJsonModule --esModuleInterop",
|
|
"build-userScriptHeader": "npm run build-tooling && node ./tools/userScriptHeader.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/JosunLP/UserScriptProjectTemplate.git"
|
|
},
|
|
"keywords": [
|
|
"User",
|
|
"Script",
|
|
"TypeScript",
|
|
"Webpack",
|
|
"Ingress"
|
|
],
|
|
"author": "Jonas Pfalzgraf <info@josunlp.de>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/JosunLP/UserScriptProjectTemplate/issues"
|
|
},
|
|
"homepage": "https://github.com/JosunLP/UserScriptProjectTemplate#readme",
|
|
"devDependencies": {
|
|
"ts-loader": "^9.3.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.7.4",
|
|
"undici-types": "^6.18.2",
|
|
"vite": "^5.2.12",
|
|
"vite-tsconfig-paths": "^4.3.2",
|
|
"webpack": "^5.74.0",
|
|
"webpack-cli": "^4.10.0"
|
|
}
|
|
}
|