-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "@thjxs/gc-markdown",
"version": "0.4.2",
"description": "markdown component",
"main": "lib/index.js",
"author": "hong jian",
"license": "MIT",
"keywords": [
"markdown",
"react",
"dark mode"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib"
],
"scripts": {
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"build": "npm run build:types && npm run build:js",
"format": "prettier src/* --single-quote --write",
"lint": "eslint src/*"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-typescript": "^7.12",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12",
"@babel/preset-typescript": "^7.13.0",
"@types/react": "^17",
"@typescript-eslint/eslint-plugin": "^4.5",
"@typescript-eslint/parser": "^4.5",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.2.2"
},
"dependencies": {
"prism-react-renderer": "^1.1.1",
"react-markdown": "^5.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0"
}
}