-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "visual-page-editor",
"version": "2.0.1",
"description": "Modern visual editor for Page XML files - based on nw-page-editor",
"engines": {
"node": ">=18.0.0"
},
"main": "./html/index.html",
"author": "buzzcauldron",
"license": "MIT",
"window": {
"title": "Visual Page Editor",
"width": 1200,
"height": 800,
"show": true,
"min_width": 800,
"min_height": 600
},
"dependencies": {
"github-markdown-css": "^5.6.0",
"image-size": "^0.6.2",
"nw": "0.109.1-sdk"
},
"devDependencies": {
"@types/jquery": "^3.3.47",
"esbuild": "^0.27.4",
"jshint": "^2.13.6",
"typescript": "^5.3.3",
"vitest": "^4.1.2"
},
"scripts": {
"build": "esbuild src/entry.js --bundle --platform=node --packages=external --format=iife --outfile=js/bundle.js --log-level=info",
"build:watch": "esbuild src/entry.js --bundle --platform=node --packages=external --format=iife --outfile=js/bundle.js --watch",
"prepare": "npm run build",
"review": "./scripts/code-review.sh",
"lint": "jshint js/*.js --exclude js/*.min.js,js/bundle.js,js/xmllint.js",
"test": "npm run review",
"test:unit": "vitest run",
"test:launcher": "bats scripts/test-launcher.bats",
"typecheck": "tsc --noEmit",
"ts": "tsc",
"start": "nw .",
"nw": "nw .",
"verify:nw": "./scripts/verify-local-nw-install.sh",
"test:install-docker": "./scripts/test-install-docker.sh",
"test:install-mac": "./scripts/test-fresh-install-mac.sh",
"install-desktop": "./scripts/install-desktop.sh",
"docker:run": "./docker-run.sh",
"check:nw-align": "./scripts/check-nwjs-version-alignment.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/buzzcauldron/visual-page-editor.git"
},
"keywords": [
"page-xml",
"document-editor",
"annotation-tool",
"visual-editor"
]
}