-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "ansi-to-react",
"version": "6.0.10",
"packageManager": "pnpm@10.2.0",
"description": "ANSI to React Elements",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.ts",
"scripts": {
"build": "tsc -b",
"test": "jest",
"semantic-release": "semantic-release"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/ansi-to-react.git"
},
"keywords": [
"ansi",
"react"
],
"publishConfig": {
"access": "public"
},
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"license": "BSD-3-Clause",
"dependencies": {
"anser": "^2.3.2",
"escape-carriage": "^1.3.1",
"linkify-it": "^3.0.3"
},
"peerDependencies": {
"react": "^16.3.2 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.3.2 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/linkify-it": "^3.0.2",
"@types/react": "^19.1.8",
"conventional-changelog-conventionalcommits": "^9.0.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}