-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "@oak-digital/dawa-client-ts",
"private": false,
"version": "0.1.6",
"type": "module",
"files": [
"dist"
],
"main": "./dist/dawa-client-ts.cjs",
"module": "./dist/dawa-client-ts.mjs",
"types": "./dist/dawa-client-ts.d.ts",
"exports": {
".": {
"import": "./dist/dawa-client-ts.mjs",
"require": "./dist/dawa-client-ts.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier -w .",
"test": "vitest",
"coverage": "vitest run --coverage",
"release": "bumpp"
},
"devDependencies": {
"@oak-digital/dawa-autocomplete-ts": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"bumpp": "^9.4.0",
"dts-bundle-generator": "^7.2.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-check-file": "^1.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vitest": "^0.0.30",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.28.3"
},
"dependencies": {
"axios": "^1.2.6"
}
}