-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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
{
"name": "react-prompt-kit",
"version": "0.0.2",
"description": "React components for prompt engineering",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./src": {
"import": "./src/index.ts"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"check": "tsc --noEmit --incremental",
"clean": "rimraf dist *.tsbuildinfo",
"prepublishOnly": "pnpm run test && pnpm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"keywords": [
"react",
"prompt-engineering",
"llm",
"jsx",
"markdown"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chatbotkit/react-prompt-kit.git"
},
"peerDependencies": {
"react": "^18"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/react": "^18",
"jest": "^29",
"jest-environment-jsdom": "^30.2.0",
"react": "^18",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"tsx": "^4.20.3",
"typescript": "^5.9"
}
}