-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
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": "yarn-plugin-optional-resolution",
"version": "1.2.0",
"description": "Yarn Berry plugin that adds support for non-existing optional package dependencies",
"keywords": [
"yarn",
"berry",
"plugin",
"optional",
"resolution",
"dependencies",
"optionalDependencies"
],
"author": {
"name": "Kristian Kraljic",
"email": "[email protected]",
"url": "https://kra.lc/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kristian/yarn-plugin-optional-resolution.git"
},
"homepage": "https://github.com/kristian/yarn-plugin-optional-resolution#readme",
"main": "./sources/index.ts",
"scripts": {
"build": "builder build plugin && node --eval \"require('fs').copyFile('./bundles/@yarnpkg/plugin-optional-resolution.js','./bundles/@yarnpkg/plugin-better-optional.js',err=>{err&&process.exit(1)})\""
},
"dependencies": {
"@yarnpkg/builder": "^4.0.0",
"@yarnpkg/cli": "^4.0.1",
"@yarnpkg/core": "^4.0.1",
"@yarnpkg/plugin-npm": "^3.0.0",
"@yarnpkg/plugin-pack": "^4.0.0",
"semver": "^7.5.4",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/node": "^18",
"@types/semver": "^7"
},
"packageManager": "[email protected]"
}