-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
32 lines (32 loc) · 872 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
{
"name": "sberry",
"version": "0.0.3-alpha.0",
"homepage": "http://18alantom.github.io/strawberry",
"description": "Zero-dependecy, build-free framework for the artisanal web.",
"main": "dist/sb.min.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "esbuild ./index.ts --bundle --format=iife --global-name=sb --watch --outfile=index.js",
"dist": "./dist.sh",
"pub": "tsc && yarn dist && yarn publish --access public && ./postpub.sh"
},
"devDependencies": {
"esbuild": "^0.17.15",
"typescript": "^5.0.3"
},
"author": {
"name": "Alan Tom",
"email": "[email protected]",
"web": "https://github.com/18alantom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18alantom/strawberry.git"
},
"bugs": {
"url": "https://github.com/18alantom/strawberry/issues"
}
}