forked from samclarke/SCEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.66 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
{
"name": "@yafnet/sceditor",
"version": "3.2.17",
"description": "Forked SCEditor for YAF.NET.",
"homepage": "http://www.sceditor.com/",
"bugs": "https://github.com/samclarke/SCEditor/issues",
"license": "MIT",
"author": "Sam Clarke <sam@samclarke.com>",
"contributors": [
{
"name": "w8tcha"
}
],
"files": [
"dist/",
"src/",
"CHANGELOG.txt",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/yafnet/SCEditor.git"
},
"keywords": [
"WYSIWYG",
"BBCode",
"editor",
"contenteditable",
"ui"
],
"engines": {
"node": ">= 0.10.0"
},
"browserslist": [
"last 2 versions"
],
"scripts": {
"test": "eslint . && tsc --noEmit && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"build": "node scripts/build.mjs",
"build:manual-tests": "node scripts/build-manual-tests.mjs",
"lint": "eslint .",
"update-deps": "npm install"
},
"devDependencies": {
"@vitest/browser": "^4.1.10",
"@vitest/browser-playwright": "^4.1.10",
"autoprefixer": "^10.5.4",
"cssnano": "^8.0.2",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"loader-utils": "^3.3.1",
"playwright": "^1.61.1",
"postcss": "^8.5.22",
"postcss-header": "^3.0.3",
"rangy": "^1.3.2",
"sass": "^1.101.7",
"sinon": "^22.1.0",
"terser": "^5.49.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"webpack": "^5.109.0",
"webpack-dev-server": "^6.0.0"
},
"dependencies": {
"dompurify": "^3.4.12"
}
}