-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@kherock/yarn-plugin-esm-loader-typescript",
"version": "2.0.0",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"author": "Kyle Herock <[email protected]>",
"dependencies": {
"@yarnpkg/cli": "^4.0.2",
"@yarnpkg/core": "^4.0.2",
"@yarnpkg/fslib": "^3.0.1",
"@yarnpkg/plugin-pnp": "^4.0.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@kherock/pnp-esm-loader-typescript": "workspace:*",
"@yarnpkg/builder": "^4.0.0",
"typescript": "~5.2.2"
},
"peerDependencies": {
"esbuild": "*"
},
"scripts": {
"build:compile": "tsc --build",
"build:plugin-esm-loader-typescript": "builder build plugin",
"update-local": "yarn build:plugin-esm-loader-typescript",
"postpack": "rm -rf lib",
"prepack": "run build:compile"
},
"publishConfig": {
"main": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kherock/yarn-plugins.git",
"directory": "packages/plugin-esm-loader-typescript"
},
"files": [
"lib/"
],
"engines": {
"node": ">=18.12.0"
}
}