-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "@betomorrow/styled-tagged-text",
"author": "BeTomorrow",
"version": "3.0.0",
"license": "MIT",
"description": "Parse your text and split it into multiple components with custom styles",
"main": "dist/index.js",
"module": "dist/styled-tagged-text.esm.js",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"react-native": "src/index.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeTomorrow/styled-tagged-text.git"
},
"homepage": "https://github.com/BeTomorrow/styled-tagged-text#readme",
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx"
},
"keywords": [
"styled-text",
"text",
"bbcode",
"react",
"react-native"
],
"peerDependencies": {
"react": ">=16",
"react-native": ">=0.57.0"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-native": "^0.70.8",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"react": "^18.1.0",
"react-native": "^0.70.6",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}