-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 973 Bytes
/
package.json
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
{
"private": true,
"name": "@smotaal/markup",
"description": "smotaal.io/markup",
"version": "0.0.0-alpha.2",
"author": "Saleh Abdel Motaal <[email protected]>",
"repository": "https://github.com/SMotaal/markup.git",
"license": "MIT",
"type": "module",
"main": "index.mjs",
"exports": {},
"scripts": {
"serve": "http-server --cors -s",
"bundle": "rollup -c rollup.config.js",
"postbundle": "[ -d ./packages/markup/dist/tokenizer ] && rm -Rf ./packages/markup/dist/tokenizer; cp -R ./packages/tokenizer/dist/ ./packages/markup/dist/tokenizer/;",
"start": "./index.mjs"
},
"devDependencies": {
"@smotaal.io/tools": "*",
"@types/node": "*",
"http-server": "*",
"prettier": "*",
"rollup": "*",
"typescript": "*"
},
"workspaces": {
"packages": [
"packages/grammar",
"packages/tokenizer",
"packages/pseudom",
"packages/markup"
],
"nohoist": [
"**/pseudom"
]
}
}