-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "rosetty",
"version": "5.0.0",
"bugs": {
"url": "https://github.com/qlaffont/rosetty/issues",
"email": "contact@qlaffont.com"
},
"license": "MIT",
"author": "Qlaffont",
"repository": {
"type": "git",
"url": "https://github.com/qlaffont/rosetty.git"
},
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": {},
"types": "./dist/index.d.ts",
"typings": "dist/index.d.ts",
"typesVersions": {},
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "bun x bunup",
"test": "bun test ./test",
"test:coverage": "bun test ./test --coverage --coverage-reporter=lcov --coverage-reporter=text --coverage-dir=coverage",
"lint": "oxlint src test bunup.config.ts",
"format": "oxfmt src test bunup.config.ts",
"format:check": "oxfmt --check src test bunup.config.ts"
},
"dependencies": {
"date-fns": "^4.1.0",
"rosetta": "^1.1.0"
},
"devDependencies": {
"@formatjs/intl-durationformat": "^0.10.8",
"bun-types": "^1.3.13",
"bunup": "^0.16.31",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.13"
}