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{
"name": "my-pkg",
"version": "1.0.0",
"description": "Test fixture for zshy - represents a typical TypeScript library",
"type": "module",
"scripts": {
"build": "tsx ../../src/index.ts --project tsconfig.json"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"zshy": {
"exports": {
".": "./src/index.ts"
}
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}