1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "name": "betterytm",
- "version": "1.0.0",
- "description": "Userscript that improves YouTube Music",
- "homepage": "https://github.com/Sv443/BetterYTM",
- "main": "./src/BetterYTM.user.ts",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "build": "webpack",
- "post-build": "ts-node ./src/tools/post-build.ts",
- "serve": "http-server -s -c 5 -p 8710 .",
- "watch": "nodemon --exec \"npm run build && npm run serve\"",
- "lint": "eslint ."
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Sv443/BetterYTM.git"
- },
- "author": {
- "name": "Sv443",
- "url": "https://github.com/Sv443",
- "email": "[email protected]"
- },
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Sv443/BetterYTM/issues"
- },
- "dependencies": {
- "@billjs/event-emitter": "^1.0.3",
- "marked": "^5.0.3"
- },
- "devDependencies": {
- "@types/greasemonkey": "^4.0.4",
- "@types/marked": "^5.0.0",
- "@types/node": "^20.2.4",
- "@typescript-eslint/eslint-plugin": "^5.59.7",
- "@typescript-eslint/parser": "^5.59.7",
- "eslint": "^7.32.0",
- "html-loader": "^4.2.0",
- "http-server": "^14.1.1",
- "markdown-loader": "^8.0.0",
- "nodemon": "^2.0.22",
- "ts-loader": "^9.4.3",
- "ts-node": "^10.9.1",
- "tslib": "^2.5.2",
- "typescript": "^5.0.4",
- "webpack-cli": "^5.1.1"
- },
- "browserslist": [
- "last 1 version",
- "> 1%",
- "not dead"
- ],
- "nodemonConfig": {
- "watch": [
- "src/*",
- "tools/*"
- ],
- "ext": "ts,js,json",
- "ignore": [
- "BetterYTM.user.js",
- "dev/*"
- ]
- }
- }
|