-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-timespace",
"version": "0.6.0",
"description": "Multi-timezone timeline React component — drag time intervals across timezone rows with collision-resolved clock labels. Extracted from SyncContact.",
"type": "module",
"sideEffects": false,
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./theme-config": {
"types": "./theme-config/index.d.ts",
"default": "./theme-config/index.js"
},
"./theming": {
"types": "./theming/index.d.ts",
"default": "./theming/index.js"
},
"./tzOptions": {
"types": "./tzOptions.d.ts",
"default": "./tzOptions.js"
},
"./state/actions": {
"types": "./state/actions.d.ts",
"default": "./state/actions.js"
},
"./state/actionTypes": {
"types": "./state/actionTypes.d.ts",
"default": "./state/actionTypes.js"
},
"./state/keyValueReducer": {
"types": "./state/keyValueReducer.d.ts",
"default": "./state/keyValueReducer.js"
},
"./state/timeZonesProvider": {
"types": "./state/timeZonesProvider.d.ts",
"default": "./state/timeZonesProvider.jsx"
},
"./package.json": "./package.json"
},
"publishConfig": {
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./theme-config": {
"types": "./dist/theme-config.d.ts",
"default": "./dist/theme-config.js"
},
"./package.json": "./package.json"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "vite build && node scripts/copy-types.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm test && npm run typecheck && npm run build",
"prepack": "node scripts/pack-fields.mjs apply",
"postpack": "node scripts/pack-fields.mjs restore"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"lucide-react": "^1.14.0",
"prop-types": "^15.8.1",
"react-colorful": "^5.6.1"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/it-pal-net/react-timespace.git"
},
"homepage": "https://synccontact.com/timespace",
"keywords": [
"react",
"timezone",
"timeline",
"time-zones",
"scheduling",
"meeting-planner",
"world-clock",
"component"
],
"author": "Vladimir Pal",
"license": "MIT"
}