-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.4 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.4 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
{
"name": "react-temporal",
"version": "0.0.2",
"description": "A comprehensive React hooks library for date and time management using the JavaScript Temporal API. Provides custom hooks for all common date, time, calendar, and timezone needs in React projects.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"dev": "pwsh -ExecutionPolicy Bypass -File scripts/dev.ps1",
"dev:test": "pwsh -ExecutionPolicy Bypass -File scripts/dev.ps1 -Task test",
"dev:build": "pwsh -ExecutionPolicy Bypass -File scripts/dev.ps1 -Task build",
"dev:lint": "pwsh -ExecutionPolicy Bypass -File scripts/dev.ps1 -Task lint",
"dev:typecheck": "pwsh -ExecutionPolicy Bypass -File scripts/dev.ps1 -Task typecheck",
"prepublishOnly": "npm run build && npm run test && npm run lint && npm run typecheck",
"setup": "node scripts/setup.js",
"setup:ps": "pwsh -ExecutionPolicy Bypass -File scripts/setup.ps1",
"release": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"release:ps": "pwsh -ExecutionPolicy Bypass -File scripts/release.ps1",
"release:ps:minor": "pwsh -ExecutionPolicy Bypass -File scripts/release.ps1 -VersionType minor",
"release:ps:major": "pwsh -ExecutionPolicy Bypass -File scripts/release.ps1 -VersionType major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xarlizard/react-temporal.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/xarlizard/react-temporal#readme",
"bugs": {
"url": "https://github.com/xarlizard/react-temporal/issues"
},
"keywords": [
"react",
"temporal",
"date",
"time",
"calendar",
"timezone",
"hooks",
"datetime",
"javascript",
"library",
"polyfill"
],
"author": {
"name": "xarlizard",
"email": "38315638+xarlizard@users.noreply.github.com",
"url": "https://github.com/xarlizard"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^30.0.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^8.56.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.4",
"rollup": "^4.53.2",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}