-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "@lix-js/html-diff",
"version": "0.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/opral/html-diff"
},
"exports": {
".": "./dist/index.js",
"./default.css": "./src/default.css"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsc --noEmit && vitest run",
"test:watch": "vitest",
"ci": "pnpm run build && pnpm run test",
"changeset": "changeset",
"version-packages": "changeset version",
"format": "prettier . --write",
"docs:dev": "rspress dev",
"docs:build": "rspress build",
"docs:preview": "rspress preview"
},
"devDependencies": {
"@braintree/sanitize-url": "^7.1.1",
"@changesets/cli": "^2.29.7",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/postcss": "^4.1.10",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"dedent": "1.5.1",
"prettier": "^3.5.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rspress": "^1.40.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.5.3",
"vite": "^6.2.6",
"vitest": "^3.2.4",
"rspress-plugin-mermaid": "^0.3.0"
},
"dependencies": {
"diff": "^8.0.2",
"parse5": "^7.3.0"
}
}