-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.97 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.97 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@humanspeak/svelte-diff-match-patch",
"version": "0.1.1",
"description": "A powerful, customizable diff-match-patch library for Svelte with TypeScript support",
"keywords": [
"svelte",
"diff-match-patch",
"diff",
"patch",
"component",
"sveltekit",
"svelte5"
],
"homepage": "https://diff.svelte.page",
"bugs": {
"url": "https://github.com/humanspeak/svelte-diff-match-patch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanspeak/svelte-diff-match-patch.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/humanspeak"
},
"license": "MIT",
"author": "Humanspeak, Inc.",
"sideEffects": [
"**/*.css"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!dist/test/**/*"
],
"scripts": {
"build": "vite build && npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"dev:all": "concurrently -k -n pkg,docs -c green,cyan \"pnpm -w -r --filter @humanspeak/svelte-diff-match-patch run dev:pkg\" \"pnpm --filter docs run dev\"",
"dev:pkg": "svelte-kit sync && svelte-package --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "npm run format && eslint . --fix",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:all": "npm run test && npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:ui": "playwright test --ui",
"test:only": "vitest run",
"test:watch": "vitest"
},
"overrides": {
"@sveltejs/kit": {
"cookie": "^0.7.0"
}
},
"dependencies": {
"diff-match-patch-ts": "^0.8.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.53.0",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.15.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"publint": "^0.3.17",
"svelte": "^5.53.0",
"svelte-check": "^4.4.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"volta": {
"node": "24.13.1"
},
"publishConfig": {
"access": "public"
},
"tags": [
"svelte",
"markdown"
]
}