-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "vinyl-clean-scheduler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node esbuild.js",
"dev": "pnpm build && node build/cli.js",
"lint": "eslint . --ext .ts",
"clean": "rm -rf build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Mitchell Slager",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^1.0.3",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.3",
"node-fetch": "^3.3.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"typescript": "*"
}
}