forked from KonnorRogers/rhino-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
97
98
99
{
"name": "rhino-editor",
"version": "0.8.0",
"description": "A custom element wrapped rich text editor",
"type": "module",
"main": "exports/index.js",
"module": "exports/index.js",
"scripts": {
"setup": "pnpm install && cd tests/rails && pnpm install && pnpm playwright install --with-deps && bundle install && cd - && cd docs && bundle install && pnpm install",
"setup:docs": "pnpm install && pnpm run build && cd docs && bundle install && pnpm install",
"build": "rm -rf {cdn,internal,exports} && pnpm build:types && node esbuild.config.js",
"build:types": "tsc && tsc --declarationDir ./cdn",
"lint": "prettier --check ./src",
"fix": "prettier --write ./src",
"test": "concurrently --names \"RAILS,DOCS,UNIT\" -c \"red,green,blue\" \"pnpm run test:rails\" \"pnpm run test:docs\" \"pnpm run test:unit\"",
"test:rails": "cd tests/rails && bundle exec rails test:all",
"test:unit": "web-test-runner",
"test:docs": "playwright test",
"start": "pnpm build -- --watch",
"start:docs": "cd docs && overmind start -f Procfile.dev",
"start:rails": "cd tests/rails && overmind start -f Procfile.dev",
"release": "pnpm run build && changeset version && changeset publish && git push --follow-tags",
"changeset": "changeset"
},
"files": [
"exports",
"internal",
"cdn",
"types.d.ts",
"custom-elements.json"
],
"keywords": [
"tiptap",
"prosemirror",
"richtext",
"editor",
"wysiwg",
"webcomponents"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@custom-elements-manifest/analyzer": "^0.8.4",
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/testing": "^3.2.0",
"@playwright/test": "^1.37.1",
"@types/rails__activestorage": "^7.0.1",
"@typescript-eslint/parser": "^6.5.0",
"@web/dev-server": "^0.3.1",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "^0.17.1",
"@web/test-runner-commands": "^0.8.0",
"@web/test-runner-playwright": "^0.10.1",
"chalk": "^5.3.0",
"concurrently": "^8.2.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"rhino-editor": "link:.",
"sinon": "^15.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@rails/activestorage": "^7.0.6",
"@tiptap/core": "2.1.7",
"@tiptap/extension-code-block": "2.1.7",
"@tiptap/extension-focus": "2.1.7",
"@tiptap/extension-image": "2.1.7",
"@tiptap/extension-link": "2.1.7",
"@tiptap/extension-placeholder": "2.1.7",
"@tiptap/extension-strike": "2.1.7",
"@tiptap/pm": "2.1.7",
"@tiptap/starter-kit": "2.1.7",
"linkifyjs": "^4.1.1",
"lit": "^2.8.0",
"prosemirror-utils": "1.2.1-0",
"prosemirror-view": "1.28.2",
"role-components": "^2.0.2",
"tslib": "^2.6.2"
},
"pnpm": {
"overrides ": {
"prosemirror-view": "$prosemirror-view"
}
},
"repository": "[email protected]:KonnorRogers/rhino-editor.git",
"bugs": {
"url": "https://github.com/KonnorRogers/rhino-editor/issues"
},
"homepage": "https://github.com/KonnorRogers/rhino-editor",
"author": "KonnorRogers <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json"
}