-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 832 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 832 Bytes
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
{
"name": "torrust-index-api-lib",
"version": "3.3.0",
"description": "Contains API functions for the Torrust project.",
"repository": {
"type": "git",
"url": "git+https://github.com/torrust/torrust-index-api-lib.git"
},
"license": "SEE LICENSE IN COPYRIGHT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublish": "npm run build",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"typescript": "^5.2.2"
},
"dependencies": {
"torrust-index-types-lib": "^3.1.0"
}
}