-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
{
"private": false,
"name": "@automattic/jetpack-ai-client",
"version": "0.10.1",
"description": "A JS client for consuming Jetpack AI services",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme",
"bugs": {
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] Ai Client"
},
"repository": {
"type": "git",
"url": "https://github.com/Automattic/jetpack.git",
"directory": "projects/js-packages/ai-client"
},
"license": "GPL-2.0-or-later",
"author": "Automattic",
"scripts": {
"build": "pnpm run clean && pnpm run compile-ts",
"clean": "rm -rf build/",
"compile-ts": "tsc --pretty",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"type": "module",
"devDependencies": {
"@storybook/addon-actions": "8.0.4",
"@storybook/blocks": "8.0.4",
"@storybook/react": "8.0.4",
"jest": "^29.6.2",
"jest-environment-jsdom": "29.7.0",
"typescript": "5.0.4"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"dependencies": {
"@automattic/jetpack-base-styles": "^0.6.20",
"@automattic/jetpack-connection": "^0.33.5",
"@automattic/jetpack-shared-extension-utils": "^0.14.8",
"@microsoft/fetch-event-source": "2.0.1",
"@types/react": "18.2.61",
"@wordpress/api-fetch": "6.51.0",
"@wordpress/block-editor": "12.22.0",
"@wordpress/components": "27.2.0",
"@wordpress/compose": "6.31.0",
"@wordpress/data": "9.24.0",
"@wordpress/element": "5.31.0",
"@wordpress/i18n": "4.54.0",
"@wordpress/icons": "9.45.0",
"classnames": "2.3.2",
"debug": "4.3.4",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}