-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "gitpw",
"type": "module",
"main": "build/index.js",
"version": "0.0.0",
"author": "xyfir <contact@xyfir.com> (https://www.xyfir.com)",
"license": "GPL-3.0",
"scripts": {
"watch-build": "npm run build -- -w",
"coverage": "jest --coverage",
"eslint": "eslint . --ext .ts,.json --max-warnings 0",
"build": "tsc --project tsconfig.json",
"test": "jest",
"cli": "node build/index.js"
},
"files": [
"/build"
],
"dependencies": {
"@stablelib/xchacha20poly1305": "^1.0.1",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.6",
"nanoid": "^3.3.6",
"utimes": "^5.1.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.2.0",
"@types/node": "^20.5.7",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^29.2.2",
"prettier": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.2.2",
"utility-types": "^3.10.0"
}
}