forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "@yarnpkg/plugin-typescript",
"version": "2.0.0-rc.12",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/plugin-pack": "workspace:^2.0.0-rc.14",
"algoliasearch": "4.0.0-beta.14"
},
"peerDependencies": {
"@yarnpkg/cli": "^2.0.0-rc.23",
"@yarnpkg/core": "^2.0.0-rc.18",
"@yarnpkg/plugin-essentials": "^2.0.0-rc.19"
},
"devDependencies": {
"@algolia/requester-common": "4.0.0-beta.14",
"@yarnpkg/builder": "workspace:^2.0.0-rc.13",
"@yarnpkg/cli": "workspace:^2.0.0-rc.23",
"@yarnpkg/core": "workspace:^2.0.0-rc.18",
"@yarnpkg/plugin-essentials": "workspace:^2.0.0-rc.19",
"typescript": "^3.7.4"
},
"scripts": {
"build:plugin-typescript": "builder build plugin",
"update-local": "yarn build:plugin-typescript && rsync -a --delete bundles/ bin/",
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git"
},
"publishConfig": {
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
]
}