-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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-text-tokenizer",
"version": "1.0.4",
"description": "React component to convert a text string into React.ReactNodes",
"packageManager": "[email protected]",
"scripts": {
"build": "vite build && tsc"
},
"bugs": {
"url": "https://github.com/bandinopla/react-text-tokenizer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bandinopla/react-text-tokenizer.git"
},
"author": {
"name": "Pablo Bandinopla",
"url": "https://github.com/bandinopla"
},
"module": "dist/react-text-tokenizer.esm.js",
"main":"dist/react-text-tokenizer.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-text-tokenizer.esm.js",
"require": "./dist/react-text-tokenizer.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"./dist/react-text-tokenizer.esm.js",
"./dist/react-text-tokenizer.js",
"./dist/*.d.ts"
],
"keywords": [
"tokenizer",
"parser",
"text"
],
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.0.22",
"typescript": "^4.8.4",
"vite": "^5.0.8"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}