This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"name": "get-dlsite-favorites",
"version": "1.0.0",
"description": "Parse DLsite favorites cli tool & library",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"repository": "git@github.com:get-dlsite-favorites.git",
"author": "Tomachi",
"private": true,
"scripts": {
"build": "ts-node ./src/main.ts",
"dev": "ts-node-dev ./src/main.ts",
"start": "node ./dist/main.js",
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . --ext ts,tsx",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . --ext ts,tsx --fix",
"fix:prettier": "prettier --write src"
},
"devDependencies": {
"@types/node": "18.11.17",
"@types/puppeteer": "5.4.7",
"@types/yargs": "17.0.17",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"axios": "1.2.1",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"prettier": "2.8.1",
"puppeteer": "19.2.2",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.9.4",
"webpack-node-externals": "3.0.0",
"yargs": "17.6.2",
"yarn-run-all": "3.1.1"
}
}