-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 940 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 940 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
40
41
42
43
44
{
"name": "typepath",
"version": "1.0.7",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"test": "npx tsx src/index.test.ts",
"build": "pkgroll"
},
"files": [
"dist"
],
"author": "Jeremy Frank",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"pkgroll": "^2.5.1",
"sharp": "^0.33.5",
"terminal-image": "^3.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"zod": "^3.23.8",
"superjson": "^2.2.1"
}
}