-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "md-to-react-component",
"version": "0.10.0",
"main": "cjs/index.js",
"types": "es/index.d.ts",
"module": "es/index.js",
"scripts": {
"build": "tsc -p . -m esnext --outDir dist/es && tsc -p . -m commonjs --outDir dist/cjs",
"schema": "typescript-json-schema src/types.ts Schema --out ./schema/0.0.3.json --aliasRefs true --required true --strictNullChecks true",
"postbuild": "node ./scripts/create-build-package-json.js",
"release": "npm publish --access public dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shevsky/md-to-react-component.git"
},
"author": "Konstantin Shevsky",
"license": "MIT",
"dependencies": {
"cosmiconfig": "^7.0.1",
"marked": "^17.0.0",
"webpack-virtual-modules": "^0.6.2"
},
"devDependencies": {
"@types/react": "18.3.12",
"@types/webpack": "4.41.32",
"react": "18.2.0",
"typescript": "5.7.3",
"typescript-json-schema": "0.53.0"
},
"peerDependencies": {
"react": ">16.0.0",
"webpack": ">5.0.0"
}
}