-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.33 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.33 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
61
62
63
64
65
{
"name": "@thelabnyc/ts-to-io",
"version": "0.5.1",
"license": "ISC",
"author": "thelab <thelabdev@thelab.co>",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/thelabnyc/ts-to-io.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"cli.js"
],
"scripts": {
"build": "tsc --noEmit false",
"lint": "eslint ./src",
"start": "./cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"bin": {
"ts-to-io": "cli.js"
},
"dependencies": {
"commander": "^14.0.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@thelabnyc/standards": "^0.5.0",
"@tsconfig/node24": "^24.0.3",
"@types/node": "^24.0.14",
"@typescript-eslint/parser": "^8.37.0",
"@vitest/ui": "^4.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"vitest": "^4.0.0"
},
"peerDependencies": {
"io-ts": "^2.2.0",
"fp-ts": "^2.16.0",
"io-ts-types": "^0.5.19",
"newtype-ts": "^0.3.4"
},
"peerDependenciesMeta": {
"io-ts": {
"optional": true
},
"fp-ts": {
"optional": true
},
"io-ts-types": {
"optional": true
},
"newtype-ts": {
"optional": true
}
},
"engines": {
"npm": "^11.6.2",
"node": "^24.14.0"
}
}