my pkgs monorepo
at main 30 lines 635 B view raw
1{ 2 "name": "@ewanc26/utils", 3 "version": "0.1.2", 4 "description": "Shared utility functions extracted from ewancroft.uk", 5 "type": "module", 6 "exports": { 7 ".": { 8 "source": "./src/index.ts", 9 "types": "./dist/index.d.ts", 10 "default": "./dist/index.js" 11 } 12 }, 13 "main": "./dist/index.js", 14 "types": "./dist/index.d.ts", 15 "publishConfig": { 16 "access": "public" 17 }, 18 "files": [ 19 "dist", 20 "src" 21 ], 22 "scripts": { 23 "build": "tsc --project tsconfig.json", 24 "dev": "tsc --project tsconfig.json --watch", 25 "check": "tsc --noEmit" 26 }, 27 "devDependencies": { 28 "typescript": "^5.9.3" 29 } 30}