-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.09 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
{
"engines": {
"node": ">=18.20.4",
"pnpm": "9.11.0"
},
"packageManager": "pnpm@[email protected]",
"name": "import-single-ts",
"version": "1.1.5",
"author": "Anton Stoychev",
"license": "MIT",
"exports": {
".": {
"antitoxic-dev": "./src/import-single.ts",
"types": "./lib/import-single.d.ts",
"import": "./lib/import-single.cjs",
"default": "./lib/import-single.cjs"
}
},
"files": [
"lib"
],
"scripts": {
"dev": "pnpm build:cjs --watch",
"ebuild": "esbuild ./src/import-single.ts --platform=node --target=node14 --outdir=lib",
"build:cjs": "pnpm ebuild --format=cjs --out-extension:.js=.cjs",
"build:declarations": "tsc --project ./tsconfig.json",
"build": "pnpm build:cjs && pnpm build:declarations",
"prepack": "pnpm build"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18.19.51",
"esbuild": "^0.21.4"
},
"peerDependencies": {
"esbuild": ">=0.19.5"
},
"optionalDependencies": {
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}