-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
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
{
"name": "@cutting/markdown",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/dagda1/cuttingedge.git"
},
"module": "dist/esm/index.js",
"type": "module",
"sideEffects": false,
"types": "dist/esm/index.d.ts",
"license": "MIT",
"dependencies": {
"@cutting/util": "workspace:*",
"format": "^0.2.2",
"front-matter": "^4.0.2",
"github-slugger": "^2.0.0",
"esbuild": "^0.25.0",
"image-size": "^2.0.0",
"js-yaml": "^4.1.0",
"katex": "^0.16.21",
"maath": "^0.10.8",
"mdast-util-to-markdown": "^2.1.2",
"mdx-bundler": "^10.1.0",
"reading-time": "^1.5.0",
"rehype-mathjax": "^7.1.0",
"rehype-prism-plus": "^2.0.0",
"rehype-autolink-headings": "^7.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"rehype-mdx-import-media": "^1.2.0",
"rehype-preset-minify": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"resize-observer-polyfill": "^1.5.1",
"unist-util-visit": "^5.0.0"
},
"files": [
"dist/**/*",
"test.md"
],
"scripts": {
"build": "NODE_ENV=production devtools rollup",
"lint": "eslint ./src/**/*.ts --fix",
"start": "pnpm vite --host --port 9000 -l=info --clearScreen=false",
"test": "echo test timing out in ci for some reason",
"test:ci": "echo test timing out in ci for some reason"
},
"volta": {
"extends": "../../package.json"
},
"exports": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
}