-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "datelative",
"version": "0.0.8",
"description": "A library that converts relative string text to JavaScript dates",
"exports": {
".": {
"types": "./dist/dts/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"test": "node --test",
"test:watch": "node --test --watch",
"prepublishOnly": "./prepublish.sh",
"postpublish": "./postpublish.sh",
"clear": "rm -rf dist/*",
"prebuild": "npm run clear",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.dts.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onhate/datelative.git"
},
"files": [
"dist/*",
"README.md",
"package.json"
],
"keywords": [
"date",
"relative",
"javascript"
],
"author": "onhate",
"license": "MIT",
"bugs": {
"url": "https://github.com/onhate/datelative/issues"
},
"homepage": "https://github.com/onhate/datelative#readme",
"devDependencies": {
"typescript": "^5.3.3"
},
"type": "module"
}