-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
58
59
60
{
"name": "code-reactor",
"version": "1.0.7",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/najmiter/code-reactor.git"
},
"homepage": "https://github.com/najmiter/code-reactor",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"patch": "npm version patch --no-git-tag-version",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"code",
"highlight",
"highlighter",
"code-highlighter",
"react-code-highlighter"
],
"author": "Najam",
"license": "MIT",
"description": "A code highlighter component for react",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^29.7.0",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}