-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "react-to-text",
"version": "2.0.1",
"description": "Convert react components to plain text without any HTML markup",
"keywords": [
"react",
"utility",
"typescript",
"conversion"
],
"homepage": "https://github.com/lhansford/react-to-text",
"bugs": {
"url": "https://github.com/lhansford/react-to-text/issues",
"email": "mail@lukehansford.me"
},
"author": "Luke Hansford",
"license": "MIT",
"files": [
"dist"
],
"source": "./src/index.tsx",
"main": "./dist/index.js",
"module": "dist/module.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "parcel build",
"lint": "eslint src --ext .js,.ts,.jsx,.tsx",
"lint:fix": "yarn lint --fix",
"test": "jest --config ./config/jest.config.js",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.36.0",
"eslint-config-lukehansford-react": "^1.2.0",
"jest": "^29.5.0",
"parcel": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"dependencies": {},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}