-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 821 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 821 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
27
28
29
{
"name": "stack-editor",
"version": "0.4.0-a3",
"description": "Stack editor",
"main": "index.js",
"scripts": {
"tiye": "rsync -r dist/ cirru.org:repo/Cirru/stack-editor",
"watch": "shadow-cljs watch client server",
"page": "yarn shadow-cljs compile page && env=dev node target/page.js",
"del": "rm -rf dist/*",
"serve": "serve dist",
"html": "shadow-cljs compile page && node target/page.js",
"build": "yarn del && shadow-cljs release client && yarn html"
},
"bin": {
"stack-editor": "./dist/server.js",
"se": "./dist/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Cirru/stack-editor"
},
"author": "jiyinyiyong",
"license": "MIT",
"devDependencies": {
"shadow-cljs": "^2.8.93",
"source-map-support": "^0.5.16"
}
}