-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.68 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
63
64
65
66
67
68
69
70
71
{
"name": "react-dms-input",
"version": "0.0.5",
"license": "MIT",
"homepage": "https://phalkone.github.io/react-dms-input/",
"repository": {
"url": "git+https://github.com/phalkone/react-dms-input.git"
},
"keywords": [
"react",
"react-component",
"input",
"typescript",
"dms",
"coordinates",
"latitude",
"longitude",
"lat",
"lon",
"degrees",
"minutes",
"seconds"
],
"type": "module",
"files": [
"dist",
"lib"
],
"types": "./dist/react-dms-input.d.ts",
"main": "./dist/react-dms-input.umd.cjs",
"module": "./dist/react-dms-input.js",
"exports": {
".": {
"import": "./dist/react-dms-input.js",
"require": "./dist/react-dms-input.umd.cjs"
},
"./style.css": "./dist/react-dms-input.css"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:demo": "tsc -b && vite build --mode demo",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"jsdom": "^26.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5"
}
}