ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto

chore(shared): add build script and update exports for production

byarielm.fyi cde2ed29 fb581466

verified
+12 -3
+12 -3
packages/shared/package.json
··· 2 2 "name": "@atlast/shared", 3 3 "version": "0.1.0", 4 4 "type": "module", 5 - "main": "./src/index.ts", 5 + "main": "./dist/index.js", 6 6 "types": "./src/index.ts", 7 7 "exports": { 8 - ".": "./src/index.ts", 9 - "./types/*": "./src/types/*" 8 + ".": { 9 + "types": "./src/index.ts", 10 + "default": "./dist/index.js" 11 + }, 12 + "./types/*": { 13 + "types": "./src/types/*.ts", 14 + "default": "./dist/types/*.js" 15 + } 16 + }, 17 + "scripts": { 18 + "build": "tsc" 10 19 }, 11 20 "dependencies": { 12 21 "kysely": "^0.28.10"