-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "@accentor/api-client-js",
"version": "0.23.6",
"description": "A javascript client for the Accentor API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "github:accentor/api-client-js",
"scripts": {
"lint": "eslint . --fix",
"build": "tsc && vite build",
"dev": "vite build --watch",
"test": "vitest run --coverage",
"type-check": "tsc"
},
"author": "Team Accentor <team@accentor.tech>",
"contributors": [
"Robbe Van Petegem <robbe@vanpetegem.me>",
"Charlotte Van Petegem <accentor@chvp.be>"
],
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist/**/*"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"fetch-mock": "^12.0.0",
"globals": "^17.0.0",
"prettier": "^3.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vite-plugin-dts": "^5.0.0",
"vitest": "^4.1.5"
},
"dependencies": {
"fetch-retry": "^6.0.0"
}
}