-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.44 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
74
75
76
77
78
79
80
81
{
"name": "prompt-mentions",
"version": "0.0.37",
"description": "React component library to add an AI prompt with mentions.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/index.css"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c && rm -rf dist/types && cp src/index.css dist/index.css",
"dev": "rollup -c -w",
"test": "vitest run --config vitest.unit.config.ts",
"test:watch": "vitest --config vitest.unit.config.ts",
"test:storybook": "vitest run --config vitest.config.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "npm run test && npm run build && npm version patch && npm publish"
},
"keywords": [
"prompt",
"ai",
"mentions"
],
"author": "blef",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@icons-pack/react-simple-icons": "^13.8.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-vitest": "^10.1.10",
"@storybook/react-vite": "^10.1.10",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"happy-dom": "^20.0.11",
"jsdom": "^27.0.1",
"lucide-react": "^0.562.0",
"playwright": "^1.57.0",
"react": "^19.2.3",
"rollup": "^4.40.0",
"rollup-plugin-dts": "^6.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^10.1.10",
"tailwindcss": "^4.1.18",
"tslib": "^2.8.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"repository": {
"type": "git",
"url": "https://github.com/getnao/prompt-mentions.git"
},
"homepage": "https://github.com/getnao/prompt-mentions",
"bugs": {
"url": "https://github.com/getnao/prompt-mentions/issues"
}
}