-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.08 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
{
"name": "@deckflow/html-editor",
"version": "0.1.8",
"description": "Run a local visual editor for HTML files",
"type": "module",
"bin": {
"htmleditor": "bin/htmleditor.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deckflow/html-editor.git"
},
"homepage": "https://github.com/deckflow/html-editor#readme",
"bugs": {
"url": "https://github.com/deckflow/html-editor/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./types/server.d.ts",
"import": "./server.js"
},
"./core": {
"types": "./types/core.d.ts",
"import": "./src/core/index.js"
},
"./editor": {
"types": "./types/editor.d.ts",
"import": "./src/editor/index.js"
},
"./ui": {
"types": "./types/ui.d.ts",
"import": "./src/ui/index.js"
},
"./server": {
"types": "./types/server.d.ts",
"import": "./src/server/index.js"
},
"./html-patch": {
"types": "./types/core.d.ts",
"import": "./htmlPatch.js"
},
"./package.json": "./package.json"
},
"files": [
"bin",
"cli.js",
"htmlPatch.js",
"nativeFilePicker.js",
"projectContext.js",
"public",
"server.js",
"src",
"tablePatch.js",
"types",
"README.md"
],
"scripts": {
"dev": "node ./bin/htmleditor.js ./samples/demo.html --port 4177 --no-open",
"start": "node ./bin/htmleditor.js ./samples/demo.html --no-open",
"test": "node --test && npm run typecheck",
"typecheck": "tsc -p tsconfig.types.json",
"pack:check": "npm pack --dry-run",
"publish:npm": "gh workflow run publish.yml --ref main",
"publish:watch": "gh run watch",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=18.18"
},
"keywords": [
"html",
"editor",
"visual-editor",
"local-first"
],
"license": "MIT",
"dependencies": {
"css-select": "^6.0.0",
"htmlparser2": "^10.1.0"
},
"devDependencies": {
"esbuild": "^0.28.1",
"typescript": "^7.0.2"
}
}