-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@charisma-ai/react",
"version": "7.0.2",
"description": "Charisma.ai chat component for React",
"source": "src/index.ts",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"repository": "https://github.com/charisma-ai/charisma-react",
"author": "charisma.ai <ben@charisma.ai>",
"license": "MIT",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && swc src -d dist",
"cm": "git-cz",
"lint": "eslint --fix --ext js,ts,tsx .",
"demo": "cd demos/chat && pnpm dev",
"demo:setup": "pnpm run build && cd demos/chat && rm -rf node_modules && pnpm i && cd ../..",
"prebuild": "rimraf dist",
"prepublish": "pnpm run build",
"semantic-release": "semantic-release",
"prepare": "husky install",
"test": "vitest"
},
"dependencies": {
"@charisma-ai/sdk": "7.0.1",
"immutability-helper": "^3.1.1",
"p-queue": "^7.3.4"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.57",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^26.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"semantic-release": "^21.0.2",
"typescript": "^5.0.4",
"vitest": "^3.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}