mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
24 lines
453 B
JSON
Executable file
24 lines
453 B
JSON
Executable file
{
|
|
"name": "resolver",
|
|
"private": true,
|
|
"alias": {
|
|
"aliased": "foo",
|
|
"aliased-file": "./bar.js",
|
|
"something": "./nested/test.js",
|
|
"aliasedfolder": "./nested",
|
|
"aliasedabsolute": "/nested",
|
|
"foo/bar": "./bar.js",
|
|
"glob/*/*": "./nested/$2",
|
|
"./baz": "./bar.js",
|
|
"url": false
|
|
},
|
|
"imports": {
|
|
"#test": "./bar.js"
|
|
},
|
|
"dependencies": {
|
|
"foo": "^0.3.4"
|
|
},
|
|
"peerDependencies": {
|
|
"bar": "*"
|
|
}
|
|
}
|