-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.86 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.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
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
{
"name": "edix",
"version": "0.4.3",
"description": "An experimental, type-safe, framework agnostic and small (5kB+) contenteditable state manager.",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "vitest --run --project=unit",
"test:browser": "vitest --run --project=browser",
"format": "prettier '**/*.{js,ts,jsx,tsx}' --write --cache",
"format:ci": "prettier '**/*.{js,ts,jsx,tsx}' -l",
"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"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.3.0",
"@size-limit/preset-small-lib": "^12.0.0",
"@storybook/addon-docs": "^10.3.1",
"@storybook/react-vite": "^10.3.1",
"@textlint/kernel": "^15.0.0",
"@textlint/textlint-plugin-text": "^15.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitest/browser-playwright": "^4.0.18",
"diff": "^8.0.0",
"esbuild": "^0.27.0",
"kuromojin": "^3.0.1",
"linkifyjs": "^4.3.1",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.8.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-is": "^19.2.3",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"rimraf": "6.1.3",
"rollup": "^4.54.0",
"size-limit": "^12.0.0",
"storybook": "^10.3.1",
"textlint-rule-preset-japanese": "^10.0.4",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"valibot": "^1.2.0",
"vite": "^8.0.6",
"vitest": "^4.1.0"
},
"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"
],
"author": "inokawa <stratoooo-taster@yahoo.co.jp> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/edix/issues"
},
"homepage": "https://github.com/inokawa/edix#readme"
}