Skip to content

Commit

Permalink
reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
skokenes committed Mar 18, 2024
1 parent 1188fb1 commit b55447c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions packages/malloy-render/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@malloydata/render",
"version": "0.0.127",
"license": "MIT",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"main": "dist/module/index.mjs",
"types": "dist/module/index.d.ts",
"homepage": "https://github.com/malloydata/malloy#readme",
"repository": {
"type": "git",
Expand All @@ -13,8 +13,8 @@
"node": ">=16"
},
"exports": {
".": "./dist/index.mjs",
"./style": "./dist/style.css",
".": "./dist/module/index.mjs",
"./style": "./dist/module/style.css",
"./webcomponent": "./dist/webcomponent/malloy-render.umd.js",
"./webcomponent/style": "./dist/webcomponent/style.css"
},
Expand All @@ -28,9 +28,10 @@
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-source": "vite build --outDir 'dist' --config vite.config.ts",
"build-source": "vite build --outDir 'dist/module' --config vite.config.ts",
"build-webcomponent": "vite build --outDir 'dist/webcomponent' --config vite.config.webcomponent.ts",
"build-types": "tsc --build --emitDeclarationOnly --declaration"
"build-types": "tsc --build",
"t": "tsc ./src/test.ts"
},
"dependencies": {
"@lit/context": "^1.1.0",
Expand Down

0 comments on commit b55447c

Please sign in to comment.