-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
{
"private": false,
"name": "@automattic/jetpack-ai-client",
"version": "0.25.5-alpha",
"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",
"test-coverage": "pnpm run test --coverage",
"watch": "tsc --watch --pretty"
},
"type": "module",
"devDependencies": {
"@storybook/addon-actions": "8.3.5",
"@storybook/blocks": "8.3.5",
"@storybook/preview-api": "8.3.5",
"@storybook/react": "8.3.5",
"@types/markdown-it": "14.1.2",
"@types/turndown": "5.0.5",
"jest": "^29.6.2",
"jest-environment-jsdom": "29.7.0",
"storybook": "8.3.5",
"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.39",
"@automattic/jetpack-connection": "^0.36.3-alpha",
"@automattic/jetpack-shared-extension-utils": "^0.16.3-alpha",
"@microsoft/fetch-event-source": "2.0.1",
"@types/react": "18.3.18",
"@types/wordpress__block-editor": "11.5.16",
"@wordpress/api-fetch": "7.14.0",
"@wordpress/base-styles": "5.14.0",
"@wordpress/blob": "4.14.0",
"@wordpress/block-editor": "14.9.0",
"@wordpress/components": "29.0.0",
"@wordpress/compose": "7.14.0",
"@wordpress/data": "10.14.0",
"@wordpress/element": "6.14.0",
"@wordpress/i18n": "5.14.0",
"@wordpress/icons": "10.14.0",
"clsx": "2.1.1",
"debug": "4.3.4",
"markdown-it": "14.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"turndown": "7.1.2"
}
}