-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.59 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
{
"$schema": "https://json.schemastore.org/package",
"name": "chrome-manifest-loader",
"version": "0.3.0",
"description": "Image process loader for webpack",
"homepage": "https://github.com/foray1010/chrome-manifest-loader",
"bugs": "https://github.com/foray1010/chrome-manifest-loader/issues",
"repository": "foray1010/chrome-manifest-loader",
"license": "MIT",
"author": "foray1010",
"exports": "./src/index.js",
"main": "./src/index.js",
"files": [
"src",
"*.md"
],
"scripts": {
"ci": "yarn lint:js && yarn lint:md",
"eslint": "ESLINT_USE_FLAT_CONFIG=true eslint --config eslint.config.mjs",
"postinstall": "husky",
"lint:js": "yarn eslint .",
"lint:md": "yarn remark .",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prettier": "prettier --ignore-path=node_modules/@foray1010/prettier-config/prettierignore",
"remark": "remark --frail --ignore-path=node_modules/@foray1010/remark-preset/remarkignore --ignore-path-resolve-from=cwd --silently-ignore"
},
"dependencies": {
"browserslist": "^4.22.1",
"nanoid": "^3.3.7",
"ramda": "^0.30.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@foray1010/eslint-config": "13.0.1",
"@foray1010/prettier-config": "11.0.1",
"@foray1010/remark-preset": "10.0.1",
"eslint": "9.14.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"pinst": "3.0.0",
"prettier": "3.3.3",
"remark-cli": "12.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.12.0 || >=20.9.0"
}
}