-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.68 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.68 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
{
"name": "@37signals/lexxy",
"version": "0.9.9-beta",
"description": "Lexxy - A modern rich text editor for Rails.",
"module": "dist/lexxy.esm.js",
"type": "module",
"exports": {
".": "./dist/lexxy.esm.js",
"./helpers": "./dist/lexxy_helpers.esm.js"
},
"files": [
"dist"
],
"repository": "https://github.com/basecamp/lexxy.git",
"author": "Jorge Manrubia <jorge@37signals.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.52.0",
"@rails/activestorage": "^8.1.200",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.15.0",
"jsdom": "^27.3.0",
"rollup": "^4.44.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-gzip": "^4.1.1",
"vite": "^7.3.1",
"vitest": "^4.0.16"
},
"scripts": {
"build": "rollup -c",
"build:npm": "rollup -c rollup.config.npm.mjs",
"benchmark:browser": "node scripts/benchmarks/run-browser-benchmarks.js",
"benchmark:browser:compare": "node scripts/benchmarks/compare-browser-benchmarks.js",
"watch": "rollup -wc --watch.onEnd=\"rails restart\"",
"lint": "eslint",
"test": "vitest",
"test:browser": "npx playwright test --config test/browser/playwright.config.js",
"test:browser:chromium": "npx playwright test --config test/browser/playwright.config.js --project=chromium",
"test:browser:firefox": "npx playwright test --config test/browser/playwright.config.js --project=firefox",
"test:browser:webkit": "npx playwright test --config test/browser/playwright.config.js --project=webkit",
"test:browser:headed": "npx playwright test --config test/browser/playwright.config.js --headed",
"test:browser:debug": "npx playwright test --config test/browser/playwright.config.js --debug",
"prerelease": "yarn build:npm",
"release": "yarn build:npm && yarn publish"
},
"dependencies": {
"@lexical/clipboard": "^0.43.0",
"@lexical/code": "^0.43.0",
"@lexical/extension": "^0.43.0",
"@lexical/history": "^0.43.0",
"@lexical/html": "^0.43.0",
"@lexical/link": "^0.43.0",
"@lexical/list": "^0.43.0",
"@lexical/markdown": "^0.43.0",
"@lexical/plain-text": "^0.43.0",
"@lexical/rich-text": "^0.43.0",
"@lexical/selection": "^0.43.0",
"@lexical/table": "^0.43.0",
"@lexical/utils": "^0.43.0",
"dompurify": "^3.3.0",
"lexical": "^0.43.0",
"marked": "^16.4.1",
"prismjs": "^1.30.0"
},
"peerDependencies": {
"@rails/activestorage": ">= 7.0.0"
},
"peerDependenciesMeta": {
"@rails/activestorage": {
"optional": true
}
}
}