-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
路73 lines (73 loc) 路 2.19 KB
/
Copy pathpackage.json
File metadata and controls
executable file
路73 lines (73 loc) 路 2.19 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
72
73
{
"name": "react-timezone-select",
"version": "3.3.3",
"description": "Usable, dynamic React Timezone Select",
"scripts": {
"dev": "concurrently \"tsup --watch\" \"cd example && pnpm dev\"",
"prepublishOnly": "pnpm run build",
"postpublish": "pnpm run build:example && npm run deploy",
"build": "tsup",
"build:example": "cd example && pnpm run build",
"deploy": "gh-pages -d example/dist",
"pretest": "pnpm run build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ci": "pnpm run build && pnpm test",
"tsc": "tsc",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"format": "biome check",
"format:fix": "biome check --write"
},
"author": "Nico Domino <yo@ndo.dev>",
"homepage": "https://github.com/ndom91/react-timezone-select",
"repository": {
"type": "git",
"url": "git+https://github.com/ndom91/react-timezone-select.git"
},
"bugs": {
"url": "https://github.com/ndom91/react-timezone-select/issues"
},
"license": "MIT",
"keywords": ["react", "timezone", "select", "react-select"],
"files": ["dist/**/*", "package.json"],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"peerDependencies": {
"react": "^16 || ^17.0.1 || ^18 || ^19",
"react-dom": "^16 || ^17.0.1 || ^18 || ^19",
"react-select": "^5.9.0"
},
"dependencies": {
"spacetime": "^7.12.0",
"timezone-soft": "^1.5.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.19.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"esbuild": "^0.27.3",
"gh-pages": "^6.3.0",
"jsdom": "^26.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@9.0.6+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3"
}