Skip to content

Commit

Permalink
Merge branch 'next' into shilman/extract-mdx-headings
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Sep 4, 2024
2 parents 72d7283 + 6d02a6f commit e5df4f9
Show file tree
Hide file tree
Showing 5 changed files with 393 additions and 2,017 deletions.
35 changes: 20 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,20 @@
},
"license": "MIT",
"author": "Michael Shilman <michael@lab80.co>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/**/*",
"README.md",
Expand All @@ -22,7 +33,6 @@
"build-storybook": "build-storybook",
"prepare": "husky install",
"prettier": "prettier",
"prebuild": "rm -rf dist",
"release": "yarn build && auto shipit",
"start": "concurrently \"yarn build:watch\" \"yarn storybook -- --no-manager-cache --quiet\"",
"storybook": "start-storybook -p 6006",
Expand All @@ -32,26 +42,21 @@
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"dependencies": {
"acorn": "^8.12.1"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/parser": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@babel/traverse": "^7.23.6",
"@babel/types": "^7.23.6",
"@mdx-js/mdx": "^3.0.0",
"@types/babel__traverse": "^7.20.4",
"@types/lodash": "^4.14.202",
"@types/node": "^18.0.0",
"auto": "^11.1.1",
"auto": "^11.1.2",
"concurrently": "^8.2.2",
"estree-to-babel": "^9.0.0",
"estree-jsx": "^0.0.1",
"hast-util-select": "^6.0.2",
"hast-util-to-estree": "^3.1.0",
"hast-util-to-string": "^3.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"lodash": "^4.17.21",
"meriyah": "^4.5.0",
"prettier": "^3.1.1",
"ts-dedent": "^2.2.0",
"tsup": "^6.2.2",
Expand Down
Loading

0 comments on commit e5df4f9

Please sign in to comment.