-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
104 lines (104 loc) · 3.54 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
100
101
102
103
104
{
"name": "rhino-editor",
"version": "0.15.0",
"description": "A custom element wrapped rich text editor",
"type": "module",
"main": "exports/index.js",
"module": "exports/index.js",
"scripts": {
"setup": "pnpm install && pnpm exec playwright install --with-deps && cd tests/rails && pnpm install && pnpm exec 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"
],
"exports": {
".": "./exports/index.js",
"./exports/*": "./exports/*",
"./cdn/*": "./cdn/*"
},
"keywords": [
"tiptap",
"prosemirror",
"richtext",
"editor",
"wysiwg",
"webcomponents"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/testing": "^3.2.2",
"@playwright/test": "^1.48.2",
"@types/mocha": "^10.0.9",
"@types/rails__activestorage": "^7.1.1",
"@typescript-eslint/parser": "^6.21.0",
"@web/dev-server": "^0.3.7",
"@web/dev-server-esbuild": "^0.4.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"glob": "^10.4.5",
"mocha": "^10.7.3",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"rhino-editor": "link:",
"sinon": "^15.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@rails/activestorage": "^7.2.102",
"@tiptap/core": "^2.9.1",
"@tiptap/extension-code": "^2.9.1",
"@tiptap/extension-code-block": "^2.9.1",
"@tiptap/extension-focus": "^2.9.1",
"@tiptap/extension-image": "^2.9.1",
"@tiptap/extension-link": "^2.9.1",
"@tiptap/extension-placeholder": "^2.9.1",
"@tiptap/extension-strike": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"linkifyjs": "^4.1.3",
"lit": "^3.2.0",
"prosemirror-codemark": "^0.4.2",
"prosemirror-utils": "^1.2.2",
"role-components": "^3.1.0",
"prosemirror-view": "^1.0.0",
"tslib": "^2.8.0"
},
"repository": "git@github.com:KonnorRogers/rhino-editor.git",
"bugs": {
"url": "https://github.com/KonnorRogers/rhino-editor/issues"
},
"homepage": "https://github.com/KonnorRogers/rhino-editor",
"author": "KonnorRogers <konnor5456@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json"
}