-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 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
{
"name": "@algolia/generative-experiences-js",
"version": "2.2.1",
"description": "JavaScript components for Algolia Generative Experiences",
"license": "MIT",
"repository": "algolia/generative-experiences",
"bugs": {
"url": "https://github.com/algolia/generative-experiences/issues"
},
"homepage": "https://github.com/algolia/generative-experiences#readme",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "yarn vitest --run --environment=happy-dom",
"test:ci": "yarn vitest --run --environment=happy-dom --reporter=junit --outputFile ../../test_results/generative-experiences-js.xml"
},
"jsdelivr": "dist/index.umd.js",
"sideEffects": false,
"source": "src/index.ts",
"types": "dist/index.d.ts",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"dependencies": {
"@algolia/generative-experiences-api-client": "2.2.1",
"@algolia/generative-experiences-vdom": "2.2.1"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.2",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.3.9",
"happy-dom": "^20.8.9",
"htm": "^3.1.1",
"preact": "^10.25.1",
"vitest": "2.1.2"
}
}