-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 2.25 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
{
"name": "react-tag-autocomplete",
"version": "7.4.0",
"description": "A simple, accessible, tagging component ready to drop into your React projects.",
"main": "dist/ReactTags.cjs.js",
"module": "dist/ReactTags.es.js",
"browser": "dist/ReactTags.umd.js",
"types": "dist/types.d.ts",
"scripts": {
"build": "npm run build:dist && npm run build:types",
"build:dist": "vite build -c vite.config.js",
"build:types": "dts-bundle-generator -o dist/types.d.ts src/index.ts",
"type-check": "tsc --noEmit",
"lint": "eslint",
"format": "prettier $([ $CI ] && echo '--check' || echo '--write') '**/*.{js,jsx,ts,tsx,json,yml}'",
"spec": "vitest run",
"coverage": "vitest run --coverage",
"verify": "npm run lint && npm run type-check && npm run format",
"test": "npm run verify && npm run spec",
"example:dev": "cd example && vite -c vite.config.js",
"example:build": "cd example && vite build -c vite.config.js",
"prepare": "husky install",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [],
"author": {
"name": "Matt Hinchliffe",
"url": "https://www.matthinchliffe.dev"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/i-like-robots/react-tag-autocomplete.git"
},
"bugs": {
"url": "https://github.com/i-like-robots/react-tag-autocomplete/issues"
},
"homepage": "https://github.com/i-like-robots/react-tag-autocomplete",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^18.0.0",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitest/coverage-v8": "^2.1.5",
"axe-core": "^4.10.0",
"dts-bundle-generator": "^8.1.2",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^8.0.2",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.4.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.18.0",
"vite": "^5.4.10",
"vitest": "^2.1.5"
},
"peerDependencies": {
"react": "^18.0.0"
},
"engines": {
"node": ">= 16.12.0"
}
}