-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.86 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
{
"name": "undifferent",
"version": "0.1.0",
"description": "Diff algorithm and viewer for UN documents",
"type": "module",
"exports": {
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./un-fetcher": {
"import": "./dist/un-fetcher/index.js",
"types": "./dist/un-fetcher/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build:lib": "tsup",
"build": "tsup && next build",
"dev": "next dev",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write ."
},
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"dependencies": {
"@next/third-parties": "^16.1.6",
"diff": "^8.0.3",
"fast-levenshtein": "^3.0.0",
"server-only": "^0.0.1",
"unpdf": "^1.4.0",
"word-extractor": "^1.0.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.2.0",
"@types/fast-levenshtein": "^0.0.4",
"@types/node": "^25.3.0",
"@types/react": "^19.2.13",
"@types/word-extractor": "^1.0.6",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"husky": "^9.1.7",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.2.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/un-eosg-analytics/undifferent"
},
"license": "MIT",
"overrides": {
"tar": "^7.5.3"
},
"keywords": [
"diff",
"un",
"united-nations",
"document-comparison"
]
}