schoolbox web extension :)
0
fork

Configure Feed

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

chore: sort package.json

willow 9f5488a8 0980ec12

+18 -19
+18 -19
package.json
··· 1 1 { 2 2 "name": "schooltape", 3 3 "version": "4.4.0", 4 + "private": true, 5 + "description": "Schooltape is a free, open-source, web extension that allows you to customise the look, feel, and functionality of Schoolbox!", 6 + "homepage": "https://schooltape.github.io", 7 + "license": "MIT", 4 8 "author": "42willow", 9 + "type": "module", 10 + "scripts": { 11 + "build": "wxt build", 12 + "build:firefox": "wxt build -b firefox", 13 + "check": "svelte-check --tsconfig ./tsconfig.json", 14 + "dev": "wxt", 15 + "dev:firefox": "wxt -b firefox", 16 + "format": "prettier --write .", 17 + "postinstall": "wxt prepare", 18 + "lint": "eslint .", 19 + "zip": "wxt zip", 20 + "zip:firefox": "wxt zip -b firefox" 21 + }, 5 22 "devDependencies": { 6 23 "@catppuccin/palette": "^1.7.1", 7 24 "@catppuccin/tailwindcss": "1.0.0", ··· 30 47 "typescript": "^5.9.3", 31 48 "typescript-eslint": "^8.55.0", 32 49 "wxt": "^0.20.15" 33 - }, 34 - "description": "Schooltape is a free, open-source, web extension that allows you to customise the look, feel, and functionality of Schoolbox!", 35 - "homepage": "https://schooltape.github.io", 36 - "homepage_url": "https://github.com/schooltape/schooltape", 37 - "license": "MIT", 38 - "private": true, 39 - "scripts": { 40 - "dev": "wxt", 41 - "dev:firefox": "wxt -b firefox", 42 - "build": "wxt build", 43 - "build:firefox": "wxt build -b firefox", 44 - "zip": "wxt zip", 45 - "zip:firefox": "wxt zip -b firefox", 46 - "lint": "eslint .", 47 - "check": "svelte-check --tsconfig ./tsconfig.json", 48 - "format": "prettier --write .", 49 - "postinstall": "wxt prepare" 50 - }, 51 - "type": "module" 50 + } 52 51 }