-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.28 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-tags-js",
"version": "2.0.4",
"description": "A flexible and customizable React component for tag selection.",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/module.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "parcel watch",
"build": "parcel build --dist-dir dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean-build": "rmdir /s /q dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvikunwar/react-tags-js.git"
},
"bugs": {
"url": "https://github.com/rvikunwar/react-tags-js/issues"
},
"homepage": "https://www.reacttags.xyz/",
"keywords": [
"react",
"component",
"tag",
"tag input",
"input field",
"tag selector",
"tag picker",
"tag input field",
"tag selection",
"tag management",
"tagging",
"labeling",
"UI component",
"customizable",
"autocomplete",
"creatable tags",
"keyboard interaction",
"accessibility"
],
"author": "rvikunwar",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@chromatic-com/storybook": "^1.9.0",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-onboarding": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-vite": "^8.3.0",
"@storybook/test": "^8.3.0",
"@types/enzyme": "^3.10.18",
"@types/enzyme-to-json": "^1.5.7",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"cheerio": "^0.22.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"jest": "^29.6.2",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"parcel": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.2.0",
"storybook": "^8.3.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"tslib": "^2.7.0"
}
}