forked from praneshr/react-diff-viewer
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
70 lines (70 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
{
"name": "react-diff-viewer-continued",
"version": "4.0.4",
"private": false,
"description": "Continuation of a simple and beautiful text diff viewer component made with diff and React",
"keywords": [
"review",
"code-review",
"diff",
"diff-viewer",
"github",
"react",
"react-component",
"ui"
],
"repository": "[email protected]:aeolun/react-diff-viewer-continued.git",
"license": "MIT",
"authors": [
"Pranesh Ravi<[email protected]>",
"Bart Riepe <[email protected]>"
],
"main": "lib/cjs/src/index",
"module": "lib/esm/src/index",
"typings": "lib/cjs/src/index",
"scripts": {
"build": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
"build:examples": "vite build examples",
"publish:examples": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist -r $GITHUB_REPO_URL",
"publish:examples:local": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist",
"start:examples": "vite examples",
"test": "vitest",
"lint": "biome lint src/ test/",
"lint:fix": "biome lint --apply-unsafe src/ test/",
"prettier": "prettier --write ."
},
"dependencies": {
"@emotion/css": "^11.11.2",
"classnames": "^2.3.2",
"diff": "^5.2.0",
"memoize-one": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@testing-library/react": "^13.4.0",
"@types/diff": "^5.0.6",
"@types/memoize-one": "^5.1.2",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"gh-pages": "^5.0.0",
"happy-dom": "^13.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.70.0",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^5.1.1",
"vitest": "^1.2.2"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">= 8"
}
}