-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "dunai",
"version": "0.0.0-dev.2",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.10",
"c8": "^10.1.3",
"expect": "^29.7.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/talentlessguy/dunai.git"
},
"exports": {
"./concat": {
"types": "./dist/concat.d.ts",
"default": "./dist/concat.js"
},
"./progress": {
"types": "./dist/progress.d.ts",
"default": "./dist/progress.js"
}
},
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "tsx --test test/*.test.ts",
"check": "biome check --write",
"test:coverage": "c8 tsx --test test/*.test.ts",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov"
},
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}