-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.42 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
61
{
"name": "react-xtermjs",
"version": "1.0.9",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"prepublish": "npm run build"
},
"author": "@RemiBonnet @ctjhoa",
"license": "ISC",
"description": "Xterm.js for React",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/github": "^10.0.7",
"@types/react": "^18.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-import-css": "^3.5.0",
"semantic-release": "^24.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@xterm/xterm": "^5.5.0"
},
"jest": {
"testEnvironment": "jsdom"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Qovery/react-xtermjs.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github"
]
]
},
"publishConfig": {
"access": "public"
},
"private": false
}