-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "monopeers",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"author": "Simon Taggart",
"repository": {
"type": "git",
"url": "[email protected]:SiTaggart/monopeers.git"
},
"homepage": "https://github.com/sitaggart/monopeers",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint . --ext .ts",
"test": "jest",
"preinstall": "npx only-allow pnpm",
"prepublish": "pnpm build"
},
"bin": {
"monopeers": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [],
"license": "ISC",
"dependencies": {
"@manypkg/get-packages": "1.1.3",
"chalk": "4.1.2",
"deep-object-diff": "1.1.9",
"tsup": "6.5.0",
"yargs": "17.6.2"
},
"devDependencies": {
"@sitaggart/eslint-config": "0.6.24",
"@sitaggart/eslint-config-ts": "0.6.25",
"@sitaggart/prettier-config": "0.3.24",
"@swc/core": "1.3.24",
"@swc/jest": "0.2.24",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@types/yargs": "17.0.19",
"eslint": "8.30.0",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}