-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
79 lines (79 loc) · 2.07 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
71
72
73
74
75
76
77
78
79
{
"name": "typewriter-editor",
"version": "0.12.8",
"description": "A rich text editor using the Delta format with decorations and rendered with a tiny virtual dom",
"keywords": [
"typewriter",
"rich text editor",
"wysiwyg",
"svelte",
"delta"
],
"scripts": {
"dev": "vite dev",
"build": "npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "vitest"
},
"license": "MIT",
"files": [
"package.json",
"README.md",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/typewriter-editor/typewriter.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@popperjs/core": "^2.11.8",
"@typewriter/document": "^0.9.3",
"easy-signal": "^4.1.6"
},
"peerDependencies": {
"svelte": ">=3.43.0 <5"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.25",
"@sveltejs/package": "^2.3.4",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/fast-diff": "^1.2.0",
"jsdom": "^24.1.0",
"jsdom-global": "^3.0.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"publint": "^0.2.10",
"raw-loader": "^4.0.2",
"svelte": "^4.2.19",
"svelte-check": "^3.8.4",
"svelte-loader": "^3.2.3",
"svelte-preprocess": "^6.0.2",
"svelte-routing": "^2.13.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vitest": "^1.6.0"
}
}