-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 888 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
38
39
40
41
42
{
"name": "@sinclair/hammer",
"version": "0.18.0",
"description": "Build Tool for Browser and Node Applications",
"author": "sinclairzx81",
"keywords": [
"esbuild",
"bundle",
"html",
"node",
"watch",
"tasks",
"esm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sinclairzx81/hammer"
},
"main": "index.js",
"bin": {
"hammer": "./hammer"
},
"scripts": {
"clean": "smoke-task clean",
"format": "smoke-task format",
"build": "smoke-task build",
"start": "smoke-task start",
"install_cli": "smoke-task install_cli",
"publish": "smoke-task publish"
},
"devDependencies": {
"@types/node": "^14.14.41",
"prettier": "^2.7.1",
"smoke-run": "^1.4.0",
"smoke-task": "^1.1.4",
"typescript": "^4.2.4"
},
"dependencies": {
"esbuild": "0.15.7"
}
}