-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
45
46
47
{
"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": "vite build",
"dev": "vite build --watch",
"test": "nyc ./node_modules/.bin/_mocha"
},
"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/chai": "^5.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^25.0.1",
"chai": "^6.0.1",
"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",
"mocha": "^11.0.1",
"nyc": "^18.0.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.3"
},
"dependencies": {
"fetch-retry": "^6.0.0"
}
}