-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
51
52
{
"name": "scite-cli",
"version": "1.0.0",
"description": "A CLI tool that gives access to citation data, scite tallies, related paper metadata and scite reference check",
"main": "./dist/src/index.js",
"bin": {
"scite-cli": "./dist/src/index.js"
},
"scripts": {
"setup": "npm install && npm run build && npm link",
"test": "jest",
"build": "tsc",
"watch": "tsc -w",
"start": "node ./dist/src/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"cli",
"citation",
"scite",
"metadata",
"reference check"
],
"author": "Soufiane Yakoubi <soufiane.yakoubi@outlook.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"axios": "^1.6.8",
"camelcase-keys": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"snakecase-keys": "^8.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"dayjs": "^1.11.10",
"ora": "^5.4.1",
"remeda": "^1.61.0",
"yargs": "^17.7.2",
"zod": "^3.22.4",
"zod-validation-error": "^3.1.0"
}
}