-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
{
"name": "@build-in-blocks/dev.setup",
"version": "1.0.5",
"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": "config.programmed/eslint.helper.mjs",
"bin": {
"@build-in-blocks/dev.setup": "bin/pkg.internal.cli.js",
"blocks.pkg.dev.setup": "bin/pkg.internal.cli.js"
},
"exports": {
".": "./config.programmed/eslint.helper.mjs",
"./prettier": "./prettier.config.mjs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"eslint:lint": "eslint .",
"prettier:format": "prettier --write \"**/*.{mjs,ts,js,json,html,css,scss}\"",
"prepare": "node ./bin/pkg.internal.cli.js dev:husky:setup:git"
},
"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-eslint": "^8.56.1"
},
"devDependencies": {
"@build-in-blocks/dev.resources": "1.0.4"
},
"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",
"typescript",
"javascript",
"node",
"web",
"shared",
"core",
"local development",
"local",
"development",
"dev",
"setup",
"eslint",
"prettier",
"husky",
"lint-staged",
"github actions",
"pre-commit hook",
"code quality",
"code formatting",
"config",
"ci",
"continuous integration"
],
"files": [
"bin/",
"config.programmed/",
"config.root/",
"eslint.config.mjs",
"prettier.config.mjs",
"README.md"
]
}