forked from jnterry/overlapping-markup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "overlapping-markup",
"description": "React component which renders text with arbitrary styling applied to potentially overlapping ranges",
"homepage": "https://github.com/jnterry/overlapping-markup",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jnterry/overlapping-markup.git"
},
"licence": "MIT",
"version": "1.0.2",
"devDependencies": {
"@types/node": "^24.0.15",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.0.0",
"aphrodite": "^2.4.0",
"browserslist": "^4.25.1",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.1",
"npm-run-all": "^4.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.8.3",
"vite": "^7.0.5"
},
"main": "./dist/overlapping-markup.cjs.js",
"browser": "dist/overlapping-markup.es.js",
"module": "dist/overlapping-markup.es.js",
"types": "dist/overlapping-markup.d.ts",
"files": [
"dist/"
],
"peerDependencies": {
"react": ">= 16.0.0 <= 19",
"react-dom": ">= 16.0.0 <= 19"
},
"scripts": {
"dev": "vite",
"build:vite": "vite build",
"build:types": "tsc",
"build": "npm-run-all build:vite build:types",
"clean": "rm -rf ./dist",
"prepare": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}