-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "npm-install-block",
"version": "0.0.3",
"license": "MIT",
"description": "GitHub Block to display commands to install npm packages using multiple package managers in Markdown files in GitHub.",
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
"type": "module",
"scripts": {
"dev": "blocks start",
"build": "blocks build",
"lint": "prettier -c --cache . && eslint . --cache --max-warnings=0 && tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@githubnext/blocks": "2.3.5",
"@primer/octicons-react": "17.12.0",
"@primer/react": "35.19.0",
"@radix-ui/react-tabs": "1.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-is": "18.2.0",
"styled-components": "5.3.6"
},
"devDependencies": {
"@hideoo/eslint-config": "1.1.0",
"@hideoo/prettier-config": "1.0.1",
"@hideoo/tsconfig": "1.0.0",
"@types/react": "18.0.28",
"eslint": "8.34.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"type-fest": "3.6.0",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@7.27.0",
"private": true,
"sideEffects": false,
"keywords": [
"github-blocks",
"github",
"blocks",
"package",
"manager",
"npm"
],
"homepage": "https://github.com/HiDeoo/npm-install-block",
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/npm-install-block.git"
},
"bugs": "https://github.com/HiDeoo/npm-install-block/issues",
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier -w -u --cache",
"**/*.{js,jsx,ts,tsx,cjs,mjs}": "eslint --cache --max-warnings=0"
}
}