-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "@smotaal/markout",
"description": "smotaal.io/markout",
"version": "0.0.1-pre.2",
"author": "Saleh Abdel Motaal <saleh@smotaal.io>",
"repository": {
"url": "https://github.com/outmark/markout"
},
"license": "MIT",
"type": "module",
"exports": {},
"main": "lib/markout.js",
"scripts": {
"bundle": "rollup -c rollup.config.js",
"prestart": "[ -d node_modules/@smotaal.io/components ] && [ -d node_modules/@smotaal.io/markup ] || npm i; [ -d public ] || mkdir public; pushd public && ([ -d markout ] || ln -s .. markout; [ -d components ] || ln -s ../node_modules/@smotaal.io/components; [ -d markup ] || ln -s ../node_modules/@smotaal.io/markup; popd)",
"start": "npx http-server -d false --cors -s -c-1 -p 80"
},
"devDependencies": {
"@smotaal.io/tools": "*",
"@smotaal.io/markup": "SMotaal/markup",
"@smotaal.io/components": "SMotaal/components",
"@types/node": "*",
"prettier": "*",
"rollup": "*",
"typescript": "*"
},
"publishConfig": {
"access": "public"
}
}