-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
{
"name": "heedjs",
"version": "0.2.7",
"license": "MIT",
"author": "Sven Johansson",
"type": "module",
"description": "Heed: Slides as code, presentations in the browser.",
"repository": "svjson/heed",
"homepage": "https://github.com/svjson/heed#readme",
"keywords": [
"slides",
"presentations",
"cli",
"javascript",
"deck"
],
"engines": {
"node": ">=18"
},
"bin": {
"heed": "heed.js",
"heed-cli": "heed-cli.js"
},
"scripts": {
"build": "npm run build:clean && npm run build:static && npm run build:copy-static",
"build:clean": "node ./scripts/prepare-bundle.js clean",
"build:static": "node ./scripts/build.js",
"build:copy-static": "node ./scripts/prepare-bundle.js copy-files",
"lint": "eslint",
"test": "playwright test",
"test:setup": "playwright install",
"test:unit": "playwright test test/unit",
"test:slide-viewer": "playwright test test/io/slide-viewer",
"test:io": "playwright test test/io",
"bump:patch": "npm version patch --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:major": "npm version major --no-git-tag-version",
"readme:toc": "markdown-toc -i README.md",
"prepublishOnly": "npm run readme:toc && npm run lint && npm run test && npm run build"
},
"files": [
"heed.js",
"heed-cli.js",
"heed-server.js",
"plugins.json",
"lib/",
"server/",
"static/",
"LICENSE",
"README.md"
],
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"env-paths": "^3.0.0",
"express": "^4.19.2",
"express-ws": "^5.0.0",
"follow-redirects": "^1.15.9",
"unidecode": "^1.1.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"eslint": "^9.29.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.2.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.6.2",
"vite": "^6.3.5"
}
}