-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "eslint-plugin-export-restrict",
"version": "0.2.3-beta",
"files": [
"dist",
"src"
],
"packageManager": "[email protected]",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/esm/index.d.mts",
"description": "ESLint Plugin For Restricted Export",
"scripts": {
"build": "tsc -p ./src/tsconfig.json",
"lint": "prettier --check ./src && eslint -c ./eslint.config.js",
"lint:fix": "prettier --write ./src && eslint -c ./eslint.config.js --fix",
"test": "eslint -c ./test/eslint.test.eslintrc.js",
"test:flat": "eslint -c ./test/eslint.test.config.js",
"test:esm": "ESLINT_USE_FLAT_CONFIG=true eslint -c ./test/eslint.test.config.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/tsukuha/eslint-plugin-export-restrict"
},
"keywords": [
"eslint",
"eslint plugin",
"no export",
"restrict export",
"prohibit export"
],
"author": "tsukuha(karacoro / からころ) <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/estree": "^1.0.6",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-plugin-export-restrict": "link:",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}