-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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": "@roo-app/react-code-block",
"version": "0.0.6",
"description": "A react code block component",
"repository": {
"type": "git",
"url": "git+https://github.com/croossin/react-code-block.git"
},
"author": "Chase Roossin",
"license": "MIT",
"bugs": {
"url": "https://github.com/croossin/react-code-block/issues"
},
"homepage": "https://github.com/croossin/react-code-block#readme",
"keywords": [
"react",
"typescript",
"codeblock",
"syntax highlighting"
],
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/react-code-block.esm.js",
"scripts": {
"release": "yarn run build && changeset publish",
"dev": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.4.0",
"tsdx": "^0.14.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.1"
}
}