-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "@bloomreach/discovery-web-sdk",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/bloomreach/discovery-web-sdk.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite build --watch",
"lint": "eslint .",
"prepare": "husky",
"test": "vitest --run --coverage.enabled",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"typedoc": "typedoc"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"msw": "^2.2.14",
"prettier": "^3.2.5",
"semantic-release": "23.0.8",
"typedoc": "^0.25.13",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-mdn-links": "^3.1.28",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^4.0.0",
"vitest": "^1.5.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]"
}