-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@storybook/docs-mdx",
"version": "0.0.0",
"description": "Storybook Docs MDX analyzer",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/docs-mdx"
},
"license": "MIT",
"author": "Michael Shilman <[email protected]>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"build-storybook": "build-storybook",
"prepare": "husky install",
"prettier": "prettier",
"release": "yarn build && auto shipit",
"start": "concurrently \"yarn build:watch\" \"yarn storybook -- --no-manager-cache --quiet\"",
"storybook": "start-storybook -p 6006",
"test": "vitest run",
"test:watch": "vitest dev"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"dependencies": {
"acorn": "^8.12.1"
},
"devDependencies": {
"@mdx-js/mdx": "^3.0.0",
"@types/node": "^18.0.0",
"auto": "^11.1.2",
"concurrently": "^8.2.2",
"estree-jsx": "^0.0.1",
"hast-util-to-estree": "^3.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"meriyah": "^4.5.0",
"prettier": "^3.1.1",
"ts-dedent": "^2.2.0",
"tsup": "^6.2.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}