-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 945 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 945 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@emrocode/chrono",
"version": "1.0.13",
"description": "Wayback Machine CLI Link Generator",
"keywords": [
"chrono",
"wayback machine",
"cli",
"tool"
],
"homepage": "https://github.com/emrocode/chrono#readme",
"bugs": {
"url": "https://github.com/emrocode/chrono/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emrocode/chrono.git"
},
"license": "MIT",
"author": "Emilio Romero <emrocode@gmail.com>",
"type": "module",
"main": "dist/index.mjs",
"bin": {
"chrono": "dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"start": "node src/index.mjs",
"build": "ncc build src/index.mjs -o dist -m",
"prepublishOnly": "npm run build",
"fmt": "prettier --write src/*"
},
"dependencies": {
"open": "^11.0.0",
"zx": "^8.8.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"prettier": "^3.8.1"
}
}