-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@visbot/hfs",
"version": "0.2.0",
"description": "A simple CAS consisting of CLI and web server",
"author": "visbot networks",
"license": "MIT",
"keywords": [],
"type": "module",
"bin": {
"hfs": "./bin/cli.js"
},
"exports": "./lib/lib.js",
"types": "./lib/lib.d.ts",
"engine": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/visbot/hfs.git"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:cli": "tsup src/cli.ts --outDir bin",
"build:lib": "tsup src/lib.ts --outDir lib",
"dev": "npm-run-all --parallel dev:*",
"dev:cli": "npm run build:cli -- --watch",
"dev:lib": "npm run build:lib -- --watch",
"lint": "eslint ./src --ignore-path .gitignore",
"prepack": "npm run build",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"commander": "^11.1.0",
"eslint-plugin-json": "^3.1.0",
"glob": "^10.3.10",
"log-symbols": "^6.0.0",
"picocolors": "^1.0.0",
"polka": "^0.5.2",
"pretty-bytes": "^6.1.1",
"table": "^6.8.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/polka": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all2": "^6.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.(json|ts)": "eslint --cache --fix"
}
}