this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sort package.json

Patrik Csak 8088b7ae 737683c6

+99 -6
+92
package-lock.json
··· 17 17 "devDependencies": { 18 18 "eslint": "^9.27.0", 19 19 "prettier": "^3.5.3", 20 + "sort-package-json": "^3.2.1", 20 21 "xo": "^1.0.0" 21 22 }, 22 23 "engines": { ··· 1710 1711 "url": "https://github.com/sponsors/ljharb" 1711 1712 } 1712 1713 }, 1714 + "node_modules/detect-indent": { 1715 + "version": "7.0.1", 1716 + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", 1717 + "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", 1718 + "dev": true, 1719 + "license": "MIT", 1720 + "engines": { 1721 + "node": ">=12.20" 1722 + } 1723 + }, 1724 + "node_modules/detect-newline": { 1725 + "version": "4.0.1", 1726 + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", 1727 + "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", 1728 + "dev": true, 1729 + "license": "MIT", 1730 + "engines": { 1731 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1732 + }, 1733 + "funding": { 1734 + "url": "https://github.com/sponsors/sindresorhus" 1735 + } 1736 + }, 1713 1737 "node_modules/doctrine": { 1714 1738 "version": "2.1.0", 1715 1739 "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", ··· 2943 2967 "reusify": "^1.0.4" 2944 2968 } 2945 2969 }, 2970 + "node_modules/fdir": { 2971 + "version": "6.4.4", 2972 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz", 2973 + "integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==", 2974 + "dev": true, 2975 + "license": "MIT", 2976 + "peerDependencies": { 2977 + "picomatch": "^3 || ^4" 2978 + }, 2979 + "peerDependenciesMeta": { 2980 + "picomatch": { 2981 + "optional": true 2982 + } 2983 + } 2984 + }, 2946 2985 "node_modules/figures": { 2947 2986 "version": "6.1.0", 2948 2987 "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", ··· 3271 3310 "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 3272 3311 } 3273 3312 }, 3313 + "node_modules/git-hooks-list": { 3314 + "version": "4.1.1", 3315 + "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-4.1.1.tgz", 3316 + "integrity": "sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==", 3317 + "dev": true, 3318 + "license": "MIT", 3319 + "funding": { 3320 + "url": "https://github.com/fisker/git-hooks-list?sponsor=1" 3321 + } 3322 + }, 3274 3323 "node_modules/glob-parent": { 3275 3324 "version": "6.0.2", 3276 3325 "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", ··· 5454 5503 "url": "https://github.com/sponsors/sindresorhus" 5455 5504 } 5456 5505 }, 5506 + "node_modules/sort-object-keys": { 5507 + "version": "1.1.3", 5508 + "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", 5509 + "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", 5510 + "dev": true, 5511 + "license": "MIT" 5512 + }, 5513 + "node_modules/sort-package-json": { 5514 + "version": "3.2.1", 5515 + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-3.2.1.tgz", 5516 + "integrity": "sha512-rTfRdb20vuoAn7LDlEtCqOkYfl2X+Qze6cLbNOzcDpbmKEhJI30tTN44d5shbKJnXsvz24QQhlCm81Bag7EOKg==", 5517 + "dev": true, 5518 + "license": "MIT", 5519 + "dependencies": { 5520 + "detect-indent": "^7.0.1", 5521 + "detect-newline": "^4.0.1", 5522 + "git-hooks-list": "^4.0.0", 5523 + "is-plain-obj": "^4.1.0", 5524 + "semver": "^7.7.1", 5525 + "sort-object-keys": "^1.1.3", 5526 + "tinyglobby": "^0.2.12" 5527 + }, 5528 + "bin": { 5529 + "sort-package-json": "cli.js" 5530 + } 5531 + }, 5457 5532 "node_modules/stable-hash": { 5458 5533 "version": "0.0.5", 5459 5534 "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", ··· 5702 5777 "license": "MIT", 5703 5778 "engines": { 5704 5779 "node": ">=6" 5780 + } 5781 + }, 5782 + "node_modules/tinyglobby": { 5783 + "version": "0.2.14", 5784 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", 5785 + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", 5786 + "dev": true, 5787 + "license": "MIT", 5788 + "dependencies": { 5789 + "fdir": "^6.4.4", 5790 + "picomatch": "^4.0.2" 5791 + }, 5792 + "engines": { 5793 + "node": ">=12.0.0" 5794 + }, 5795 + "funding": { 5796 + "url": "https://github.com/sponsors/SuperchupuDev" 5705 5797 } 5706 5798 }, 5707 5799 "node_modules/to-regex-range": {
+7 -6
package.json
··· 8 8 "profile", 9 9 "theme" 10 10 ], 11 + "repository": "github:patrik-csak/terminal-profile", 11 12 "license": "MIT", 12 13 "author": "Patrik Csak <p@trikcsak.com>", 14 + "type": "module", 15 + "main": "./index.js", 13 16 "files": [ 14 17 "index.js" 15 18 ], 16 - "main": "./index.js", 17 - "repository": "github:patrik-csak/terminal-profile", 18 19 "scripts": { 19 - "format": "eslint --fix && npm run prettier -- --write", 20 + "format": "eslint --fix && npm run prettier -- --write && sort-package-json", 20 21 "prettier": "prettier .", 21 - "test": "eslint && npm run prettier -- --check" 22 + "test": "eslint && npm run prettier -- --check && sort-package-json --check" 22 23 }, 23 24 "dependencies": { 24 25 "run-applescript": "^7.0.0" ··· 26 27 "devDependencies": { 27 28 "eslint": "^9.27.0", 28 29 "prettier": "^3.5.3", 30 + "sort-package-json": "^3.2.1", 29 31 "xo": "^1.0.0" 30 32 }, 31 33 "engines": { ··· 33 35 }, 34 36 "os": [ 35 37 "darwin" 36 - ], 37 - "type": "module" 38 + ] 38 39 }