-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "react-link-parser",
"version": "1.1.6",
"description": "Effortlessly parse text into links, tags, mentions, emails, etc.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"license": "MIT",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/amir2mi/react-link-parser.git"
},
"keywords": [
"react",
"parser",
"react-parser",
"text-parser",
"string-parser"
],
"author": "Amir M. Mohamadi",
"bugs": {
"url": "https://github.com/amir2mi/react-link-parser/issues"
},
"homepage": "https://react-link-parser.surge.sh",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"publish": "rollup -c --bundleConfigAsCjs && npm publish",
"build-watch": "rollup -c -w --bundleConfigAsCjs",
"playground": "cd playground && yarn dev",
"build-website": "cd website && yarn build && rm -rf ../docs && mkdir ../docs && mv ./dist/* ../docs",
"install-all": "yarn install & cd playground && yarn install",
"test": "vitest --config vitest.config.js"
},
"devDependencies": {
"@types/react": "^18.0.34",
"@types/react-dom": "^18.0.11",
"jsdom": "^21.1.1",
"rollup": "^3.20.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}