-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "accordance",
"version": "0.7.0",
"description": "A wrapper around unison to provide cross-platform, automatic, bidirectional file syncing",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"prepack": "npm run lint && npm run build",
"lint": "eslint ./src",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"develop": "tsx ./src/main.ts"
},
"repository": "[email protected]:crgwbr/accordance.git",
"author": "Craig Weber <[email protected]>",
"license": "ISC",
"private": false,
"bin": {
"accordance": "./dist/main.js"
},
"devDependencies": {
"@thelabnyc/standards": "^0.4.1",
"@tsconfig/node18": "^18.2.4",
"@types/js-yaml": "^4.0.9",
"@types/request": "^2.48.12",
"@types/request-promise-native": "^1.0.21",
"@types/ssh2": "^1.15.1",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"axios": "^1.7.7",
"chokidar": "^4.0.1",
"colors": "^1.4.0",
"commander": "^12.1.0",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.21",
"js-yaml": "^4.1.0",
"ssh2": "^1.16.0"
}
}