-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 877 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 877 Bytes
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
{
"name": "@localizesh/processor-mdx",
"repository": "localizesh/processor-mdx",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc --project tsconfig.build.json",
"test": "mocha",
"postinstall": "patch-package-ignore-missing --patch-dir node_modules/@localizesh/processor-md/patches"
},
"dependencies": {
"@localizesh/processor-md": "^0.2.10",
"remark-mdx": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.7",
"chai": "^5.2.0",
"eol": "^0.10.0",
"mocha": "^11.1.0",
"patch-package-ignore-missing": "^7.0.1-2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@localizesh/sdk": "^0.3.4"
}
}