-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 827 Bytes
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
{
"name": "@temelj/iterator",
"version": "0.12.0",
"description": "Utilities for working with iterators.",
"license": "MIT",
"repository": {
"url": "https://github.com/tinrab/temelj"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/mod.mjs",
"types": "./dist/mod.d.mts",
"exports": {
".": {
"types": "./dist/mod.d.mts",
"import": "./dist/mod.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "shx rm -rf dist"
},
"dependencies": {
"@temelj/result": "workspace:*",
"@temelj/value": "workspace:*",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@types/node": "25.9.2",
"shx": "^0.4.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}