-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "tashikame",
"version": "0.8.0",
"license": "ISC",
"author": "Tao Cumplido",
"repository": "https://github.com/tao-cumplido/tashikame",
"bugs": "https://github.com/tao-cumplido/tashikame/issues",
"scripts": {
"build": "tscd -p tsconfig.lib.json",
"test": "tsx --tsconfig tsconfig.test.json --test-reporter @voxpelli/node-test-pretty-reporter --test 'src/**/*.test.ts'",
"test:watch": "tsx --tsconfig tsconfig.test.json --test-reporter @voxpelli/node-test-pretty-reporter --watch --test 'src/**/*.test.ts'"
},
"dependencies": {
"type-fest": "^4.26.1"
},
"devDependencies": {
"ts-dualist": "0.1.0-beta.1",
"typescript": "5.6.3",
"@types/node": "22.8.4",
"tsx": "4.19.2",
"@voxpelli/node-test-pretty-reporter": "1.1.2",
"expect-type": "1.1.0",
"eslint": "9.13.0",
"eslint-typegen": "0.3.2",
"typescript-eslint": "8.12.2",
"@stylistic/eslint-plugin": "2.9.0",
"@shigen/eslint-plugin": "0.11.0",
"eslint-plugin-unused-imports": "4.1.4"
},
"exports": {
".": {
"import": {
"types": "./dist/module/index.d.ts",
"default": "./dist/module/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./core": {
"import": {
"types": "./dist/module/core.d.ts",
"default": "./dist/module/core.js"
},
"require": {
"types": "./dist/commonjs/core.d.ts",
"default": "./dist/commonjs/core.js"
}
},
"./array": {
"import": {
"types": "./dist/module/array.d.ts",
"default": "./dist/module/array.js"
},
"require": {
"types": "./dist/commonjs/array.d.ts",
"default": "./dist/commonjs/array.js"
}
},
"./lazy": {
"import": {
"types": "./dist/module/lazy.d.ts",
"default": "./dist/module/lazy.js"
},
"require": {
"types": "./dist/commonjs/lazy.d.ts",
"default": "./dist/commonjs/lazy.js"
}
},
"./literal": {
"import": {
"types": "./dist/module/literal.d.ts",
"default": "./dist/module/literal.js"
},
"require": {
"types": "./dist/commonjs/literal.d.ts",
"default": "./dist/commonjs/literal.js"
}
},
"./object": {
"import": {
"types": "./dist/module/object.d.ts",
"default": "./dist/module/object.js"
},
"require": {
"types": "./dist/commonjs/object.d.ts",
"default": "./dist/commonjs/object.js"
}
},
"./tuple": {
"import": {
"types": "./dist/module/tuple.d.ts",
"default": "./dist/module/tuple.js"
},
"require": {
"types": "./dist/commonjs/tuple.d.ts",
"default": "./dist/commonjs/tuple.js"
}
},
"./union": {
"import": {
"types": "./dist/module/union.d.ts",
"default": "./dist/module/union.js"
},
"require": {
"types": "./dist/commonjs/union.d.ts",
"default": "./dist/commonjs/union.js"
}
},
"./refine": {
"import": {
"types": "./dist/module/refine.d.ts",
"default": "./dist/module/refine.js"
},
"require": {
"types": "./dist/commonjs/refine.d.ts",
"default": "./dist/commonjs/refine.js"
}
},
"./collection": {
"import": {
"types": "./dist/module/collection.d.ts",
"default": "./dist/module/collection.js"
},
"require": {
"types": "./dist/commonjs/collection.d.ts",
"default": "./dist/commonjs/collection.js"
}
}
},
"types": "./dist/commonjs/index.d.ts",
"main": "./dist/commonjs/index.js"
}