-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 KB
/
package.json
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
{
"name": "@date-fns/interim",
"version": "0.1.0",
"description": "A lightweight subset of Temporal API to enable transition into the future",
"main": "index.js",
"module": "index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
}
}
},
"scripts": {
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/date-fns/interim.git"
},
"keywords": [
"Firebase",
"Point-in-time recovery",
"Typesaurus"
],
"author": "Sasha Koss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/date-fns/interim/issues"
},
"homepage": "https://github.com/date-fns/interim#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@parcel/watcher": "^2.4.1",
"@swc/core": "^1.4.13",
"babel-plugin-add-import-extension": "^1.6.0",
"bytes-iec": "^3.1.1",
"glob": "^10.3.12",
"picocolors": "^1.0.0",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
}
}