forked from wanasit/chrono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "@wengjames/chrono-node",
"description": "A natural language date parser in Javascript",
"homepage": "http://github.com/wengj9/chrono",
"repository": {
"type": "git",
"url": "https://github.com/obs-gh-jamesweng/chrono.git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"version": "0.0.11",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/jest": "^26.0.24",
"@types/luxon": "^3.4.2",
"eslint": "^9.9.1",
"eslint-plugin-unicorn": "^54.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.2.4",
"type-fest": "^4.25.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"luxon": "^3.5.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json && tsup",
"typecheck": "tsc"
}
}