-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.05 KB
/
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
{
"name": "ir.core",
"version": "0.1.0",
"description": "IR core APIs",
"main": "index.js",
"scripts": {
"cdn": "rsync -avr --progress dist/* tiye.me:cdn/ir.core",
"tiye": "rsync -avr --progress dist/{index.html,manifest.json} tiye.me:repo/Cirru/ir.core/",
"upload": "yarn cdn && yarn tiye",
"release": "shadow-cljs release browser",
"watch": "shadow-cljs watch browser",
"compile-ssr": "shadow-cljs compile ssr",
"html-dev": "env=dev node target/ssr.js && cp entry/manifest.json target/",
"html": "node target/ssr.js && cp entry/manifest.json dist/",
"index.html": "yarn compile-ssr && yarn html-dev",
"del": "rm -rf dist/*",
"serve": "http-server dist -s",
"build": "yarn del && yarn release && yarn compile-ssr && yarn html",
"build2": "shadow-cljs clj-run build.release/-main"
},
"repository": {
"type": "git",
"url": "git@github.com:Cirru/ir.core.git"
},
"author": "jiyinyiyong",
"license": "MIT",
"devDependencies": {
"http-server": "^0.10.0",
"shadow-cljs": "^2.0.123"
}
}