-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.51 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"private": false,
"name": "@arif-un/react-mix-tag-input",
"homepage": "https://arif-un.github.io/react-mix-tag-input/#custom-tag-view",
"version": "1.5.1",
"description": "A simple react component for inputting tags with a mix of text",
"module": "dist/index.d.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest --watch=false",
"test:watch": "vitest --watch",
"dev": "vite dev",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"build": "tsup",
"lint:ts": "eslint ./src --ext .ts,.tsx --config .eslintrc --fix",
"lint:styles": "stylelint \"**/*.css\" --fix",
"lint": "npm-run-all lint:ts lint:styles",
"format": "prettier --write .",
"release": "semantic-release",
"sb": "storybook dev -p 6006",
"build-storybook": "storybook build",
"e2e:ui": "pnpm exec playwright test --ui",
"e2e": "pnpm exec playwright test"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mix-tag-input",
"react-input",
"react-component",
"html-input",
"mention",
"suggestion",
"tag",
"tag-input",
"react-tag-input"
],
"author": "Arif Uddin",
"license": "MIT",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "latest",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "latest",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"stylelint": "^16.7.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"tslib": "^2.6.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.4"
},
"bugs": {
"url": "https://github.com/Arif-un/react-mix-tag-input/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Arif-un/react-mix-tag-input"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@tiptap/core": "^2.5.8",
"@tiptap/extension-document": "^2.5.8",
"@tiptap/extension-paragraph": "^2.5.8",
"@tiptap/extension-placeholder": "^2.5.8",
"@tiptap/extension-text": "^2.5.8",
"@tiptap/react": "^2.5.8"
}
}