-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
53
54
55
{
"name": "portaleargo-api",
"version": "1.0.0",
"description": "A library to interact with the api of ArgoScuolaNext",
"exports": {
"./web": "./dist/web.js",
".": "./dist/index.js"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup && tsc",
"lint": "eslint src --fix",
"prettier": "prettier --write src/**/*.ts",
"test": "npm run test:cli && cross-env NODE_ENV=development tsup && node --enable-source-maps dist/_test.js",
"test:cli": "eslint src && tsc --noEmit",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DTrombett/portaleargo-api.git"
},
"author": "DTrombett",
"license": "MIT",
"bugs": {
"url": "https://github.com/DTrombett/portaleargo-api/issues"
},
"homepage": "https://github.com/DTrombett/portaleargo-api#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"http-cookie-agent": "^6.0.6",
"tough-cookie": "^5.0.0",
"undici": "^7.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18.19.66",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"ajv": "^8.17.1"
}
}