WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 29 lines 583 B view raw
1{ 2 "name": "@atbb/css-sanitizer", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "main": "./dist/index.js", 7 "types": "./dist/index.d.ts", 8 "exports": { 9 ".": { 10 "types": "./dist/index.d.ts", 11 "default": "./dist/index.js" 12 } 13 }, 14 "scripts": { 15 "build": "tsc", 16 "test": "vitest run", 17 "lint": "tsc --noEmit", 18 "lint:fix": "oxlint --fix src/", 19 "clean": "rm -rf dist" 20 }, 21 "dependencies": { 22 "css-tree": "^2.3.1" 23 }, 24 "devDependencies": { 25 "@types/node": "^22.0.0", 26 "typescript": "^5.7.0", 27 "vitest": "^3.1.0" 28 } 29}