-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.42 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "edix",
"version": "0.0.10",
"description": "An experimental, framework agnostic, small (~3kB) contenteditable state manager.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"e2e": "npx playwright test",
"typedoc": "typedoc",
"size": "size-limit",
"prepare": "patch-package",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@size-limit/preset-small-lib": "^11.0.2",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@textlint/kernel": "^14.3.0",
"@textlint/textlint-plugin-text": "^14.3.0",
"@types/diff": "^6.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"diff": "^7.0.0",
"esbuild": "^0.24.0",
"kuromojin": "^3.0.0",
"linkifyjs": "^4.1.3",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-new-window": "^1.0.1",
"rimraf": "6.0.1",
"rollup": "^4.28.1",
"size-limit": "^11.0.2",
"storybook": "^8.4.0",
"textlint-rule-preset-japanese": "^10.0.3",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "4.3.2",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/edix.git"
},
"keywords": [
"contenteditable",
"ui",
"headless",
"textarea",
"input",
"form",
"highlight",
"autocomplete",
"tagging",
"combobox",
"richtext",
"editor",
"wysiwyg",
"react",
"vue",
"svelte",
"solid",
"angular",
"preact",
"qwik"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/edix/issues"
},
"homepage": "https://github.com/inokawa/edix#readme"
}