-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cuentica",
"version": "1.0.0",
"description": "TypeScript SDK for Cuéntica API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run generate:types && npm run build:js",
"build:js": "rollup -c",
"generate:types": "openapi-typescript openapi.yaml -o src/types/schema.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"cuentica",
"api",
"sdk",
"typescript",
"accounting",
"invoicing"
],
"author": "Martín García",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/magarcia/cuentica-sdk.git"
},
"bugs": {
"url": "https://github.com/magarcia/cuentica-sdk/issues"
},
"homepage": "https://github.com/magarcia/cuentica-sdk#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"openapi-typescript": "^7.4.4",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"rollup": "^4.29.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"cross-fetch": "^4.1.0",
"debug": "^4.4.0",
"tslib": "^2.8.1"
},
"engines": {
"node": ">=18"
}
}