-
Notifications
You must be signed in to change notification settings - Fork 889
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 974 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "js-framework-benchmark-thane",
"version": "1.0.0",
"description": "Thane framework benchmark implementation",
"author": "Timothy Louw",
"license": "MIT",
"type": "module",
"js-framework-benchmark": {
"customURL": "/dist/",
"frameworkVersion": "0.1.1",
"frameworkHomeURL": "https://github.com/timlouw/thane"
},
"scripts": {
"build": "thane build --entry ./main.ts --out ./dist --assets ./assets --html ./index.html --base /frameworks/keyed/thane/dist/",
"build-prod": "thane build --prod --entry ./main.ts --out ./dist --assets ./assets --html ./index.html --base /frameworks/keyed/thane/dist/",
"start": "thane dev --entry ./main.ts --out ./dist --assets ./assets --html ./index.html --base /frameworks/keyed/thane/dist/",
"start-prod": "thane serve --prod --entry ./main.ts --out ./dist --assets ./assets --html ./index.html --base /frameworks/keyed/thane/dist/"
},
"dependencies": {
"thane": "^0.1.1"
}
}