-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "antd-tag-input",
"version": "1.0.16",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"dependencies": {
"antd": "^4.18.6"
},
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.2.0",
"c8": "^7.11.0",
"jsdom": "^19.0.0",
"less": "^4.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-dts": "^0.9.9",
"vite-plugin-imp": "^2.1.3",
"vitest": "^0.4.1"
},
"peerDependencies": {
"react": ">=16.8.2",
"react-dom": ">=16.8.2"
},
"files": [
"dist"
],
"description": "```js import TagInput from 'antd-tag-input'; import 'antd-tag-input/dist/style.css'; ```",
"repository": {
"type": "git",
"url": "git+https://github.com/fee-pg/antd-tag-input.git"
},
"keywords": [
"antd",
"tag",
"input"
],
"author": "fee-pg",
"license": "MIT",
"bugs": {
"url": "https://github.com/fee-pg/antd-tag-input/issues"
},
"homepage": "https://github.com/fee-pg/antd-tag-input#readme"
}