-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.55 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
65
66
67
68
69
70
71
72
73
{
"name": "sirin",
"version": "1.1.1",
"description": "CLI to share files of all kinds to anyone connected to your network",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"scripts": {
"start": "node lib/main.js",
"build": "tsc",
"lint": "tsc --noEmit",
"dev": "nodemon --exec ts-node-esm main.ts",
"check": "pnpm build && pnpm start",
"prepublish": "pnpm build",
"pre-commit": "lint-staged"
},
"bin": "./lib/main.js",
"type": "module",
"keywords": [
"sirin",
"cli",
"network",
"share",
"file",
"directory"
],
"repository": {
"type": "git",
"url": "https://github.com/resyfer/sirin"
},
"author": "Saurav Pal <palsaurav.2020@gmail.com>",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/mime": "^3.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.8.4",
"@types/urlencode": "^1.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"bugs": {
"email": "resyfer.dev@gmail.com",
"url": "https://github.com/resyfer/sirin/issues"
},
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"boxen": "^7.0.0",
"chalk": "^5.1.2",
"clipboardy": "^3.0.0",
"get-port": "^6.1.2",
"mime": "^3.0.0",
"minimist": "^1.2.7",
"urlencode": "^1.1.0"
},
"lint-staged": {
"*.ts": [
"pnpm lint",
"pnpm prettier --write ."
]
},
"files": [
"lib"
],
"os": [
"linux",
"win32"
]
}