-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 747 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 747 Bytes
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
{
"private": true,
"workspaces": {
"packages": [
"hypermedium",
"@hypermedium/core",
"@hypermedium/favicons",
"@hypermedium/markdown",
"@hypermedium/sass",
"@hypermedium/schema-org",
"hypermedium-demo"
],
"nohoist": [
"hypermedium-demo/sanitize.css"
]
},
"scripts": {
"build": "./node_modules/.bin/tsc -b .",
"start": "node ./hypermedium/build/index.js",
"dev": "sift node ./hypermedium/build/index.js",
"demo": "sift node ./hypermedium/build/index.js -S hypermedium-demo",
"demo-export": "sift node ./hypermedium/build/index.js -O -f hypermedium-demo",
"website": "sift node ./hypermedium/build/index.js -S hypermedium-website",
"debug": "node --inspect-brk ./hypermedium/build/index.js -S"
}
}