-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.27 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "code-colors-react",
"version": "3.4.0",
"description": "Code syntax highlighting React component",
"main": "lib/index.js",
"scripts": {
"prettier": "npx prettier@3.2.5 --write .",
"prettier:check": "npx prettier@3.2.5 --check src",
"test": "test",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf lib",
"upgrade:check": "npx npm-check-updates@16.14",
"upgrade:interactive": "npx npm-check-updates@16.14 --interactive"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/streamich/code-colors-react.git"
},
"keywords": [
"react",
"color",
"syntax",
"highlighting",
"prism",
"refractor",
"code"
],
"author": "@streamich",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/streamich/code-colors-react/issues"
},
"homepage": "https://github.com/streamich/code-colors-react#readme",
"peerDependencies": {
"nano-theme": "*",
"react": "*",
"react-dom": "*"
},
"dependencies": {
"code-colors": "^2.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-webpack5": "^8.3.5",
"@storybook/test": "^8.3.5",
"nano-theme": "^1.4.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"storybook": "^8.3.5",
"thingies": "^2.4.0",
"typescript": "^5.6.3"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}