-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@build-in-blocks/dev.setup",
"version": "1.0.2",
"description": "Code linting, formatting, pre-commit hook and GitHub Actions Continuous Integration (CI) (including node version compatiblity check) development environment setup for your typescript code repository",
"type": "module",
"main": "eslint.config.mjs",
"bin": {
"husky-ls-config-init": "bin/user-app.husky.lint-staged.js",
"internal-husky-ls-init": "bin/internal.husky.lint-staged.js"
},
"exports": {
".": "./eslint.config.mjs",
"./prettier": "./prettier.config.mjs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"eslint:lint": "eslint .",
"prettier:format": "prettier --write \"**/*.{js,ts,css,html}\"",
"prepare": "husky"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"homepage": "https://github.com/build-in-blocks/dev.setup#readme",
"bugs": {
"url": "https://github.com/build-in-blocks/product-issue-reports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/build-in-blocks/dev.setup.git"
},
"license": "AGPL-3.0",
"author": "Mary Obiagba",
"contributors": [
"Find list of contributors in project README: https://github.com/build-in-blocks/dev.setup?tab=readme-ov-file#contributors"
],
"keywords": [
"@build-in-blocks",
"@build-in-blocks/dev.setup",
"dev.setup",
"build-in-blocks",
"blocks",
"framework",
"library",
"package",
"eslint",
"prettier",
"husky",
"lint-staged",
"github actions",
"pre-commit hook",
"code quality",
"code formatting",
"typescript",
"javascript",
"node",
"config",
"setup",
"dev environment",
"ci",
"continuous integration"
],
"files": [
"bin/",
"eslint.config.mjs",
"prettier.config.mjs",
"lint-staged.config.js",
"README.md"
]
}