-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 2.45 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
{
"name": "@jackstenglein/mui-mentions",
"version": "0.1.8",
"description": "@mention people in a MUI TextField",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"start": "rm -rf examples/.parcel-cache && parcel examples/src/index.html --dist-dir .parcel-dist",
"docs": "parcel build ./examples --dist-dir docs --public-url .",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackstenglein/mui-mentions.git"
},
"keywords": [
"react",
"@mention",
"typescript",
"MUI",
"textfield"
],
"author": "Jack Stenglein",
"license": "MIT",
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.13",
"@testing-library/react": "^14.2.1",
"@types/invariant": "^2.2.37",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.66",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.12.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": ">=5.0.0",
"react": ">=18"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"invariant": "^2.2.4"
}
}