-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "react-ghost-text",
"version": "1.1.0",
"description": "React component to show ghost text suggestions in an input field (similar to VS Code or Gmail Smart Compose)",
"keywords": [
"ghost text",
"inline autocomplete",
"AI suggestions",
"smart compose",
"input field",
"react component"
],
"author": "Dhruv Agarwal (https://agdhruv.github.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agdhruv/react-ghost-text.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:pack": "rm react-ghost-text-*.tgz ||: && rm -rf dist && npm run build && npm pack"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"assert": "^2.1.0",
"lru-cache": "^10.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"typescript": "^5.4.5"
}
}