-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@mapado/install-deps-from-pr",
"description": "Install dependencies from PR description",
"version": "2.0.3",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": "./dist/index.js",
"files": [
"dist"
],
"types": "dist/types/src/index.d.ts",
"scripts": {
"build": "run-p build:*",
"lint": "run-p lint:*",
"prepublishOnly": "run-s lint build",
"build:module": "rollup --config",
"build:types": "tsc --emitDeclarationOnly",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint . --fix"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.23.7",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.6",
"@types/tar": "^6.1.10",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "^11.2.0",
"minimist": "^1.2.8",
"npm-run-all": "4.1.5",
"octokit": "^3.1.2",
"prettier": "3.1.1",
"rollup": "4.9.2",
"tar": "^6.2.0",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"typescript": "^5.0.0"
},
"watch-module": {
"command": "yarn build:module && yarn build:types"
},
"packageManager": "[email protected]"
}