-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 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
58
59
60
61
62
63
64
{
"name": "react-notion-x-code-block",
"version": "0.4.1",
"description": "Enhance your React-Notion-X projects with a code block component. This component offers out-of-the-box support for multiple programming languages and automatically adapts to light and dark themes",
"homepage": "https://react-notion-x-code-block.vercel.app",
"type": "module",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/yanceyy/react-notion-x-code-block"
},
"scripts": {
"prepare": "pnpm format && pnpm lint",
"watch": "pnpm build:type --watch & pnpm build:js --watch",
"build": "pnpm build:js && pnpm build:type",
"build:js": "rollup -c",
"build:type": "tsc",
"format": "prettier --write .",
"lint:format": "prettier --check .",
"lint": "eslint src/**/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"notion-types": "^6.16.0",
"notion-utils": "^6.16.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-icons": "^5.1.0",
"rollup": "^4.14.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-externals": "^7.1.1",
"rollup-plugin-styles": "^4.0.0",
"shiki": "^1.3.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-notion-x": "^6.16.0"
},
"dependencies": {
"@babel/runtime": "^7.24.4"
}
}