-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.88 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@exlint.io/inflint",
"version": "2.1.1",
"description": "Inflint is a tool which scans and verifies file name conventions.",
"author": "Tal Rofe <[email protected]> (https://github.com/tal-rofe)",
"keywords": [
"linter",
"filesystem linter",
"filename linter",
"javascript",
"typescript"
],
"contributors": [
{
"name": "tal-rofe",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/tal-rofe/Inflint#readme",
"bugs": {
"url": "https://github.com/tal-rofe/Inflint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tal-rofe/Inflint.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/config.d.ts",
"import": "./dist/config.d.ts"
}
},
"files": [
"./dist/index.js",
"./bin",
"./dist/config.d.ts"
],
"bin": {
"inflint": "./bin/inflint.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"setdev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.js",
"prepare": "is-ci || run-s setdev onboarding",
"build": "node --loader ts-node/esm node_modules/webpack-cli/bin/cli.js -c ./webpack.config.ts",
"lint": "eslint -c ./.eslintrc.cjs \"**/*.{ts,js,cjs}\"",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"type-check": "tsc -p ./tsconfig.json",
"inflint": "inflint -c ./inflint.config.ts",
"knip": "knip -c ./knip.json -t ./tsconfig.json",
"cspell": "cspell lint -c ./cspell.json --gitignore --no-progress --no-summary **"
},
"dependencies": {
"@expo/spawn-async": "1.7.2",
"chalk": "5.3.0",
"cosmiconfig": "9.0.0",
"cosmiconfig-typescript-loader": "5.1.0",
"fast-glob": "3.3.2",
"micromatch": "4.0.8",
"minimist": "1.2.8",
"v8-compile-cache": "2.4.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@exlint.io/inflint": "2.1.1",
"@types/micromatch": "4.0.9",
"@types/minimist": "1.2.5",
"@types/webpack-node-externals": "3.0.4",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"commitizen": "4.3.1",
"cspell": "8.16.1",
"cz-vinyl": "2.5.4",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "3.2.0",
"figlet": "1.8.0",
"husky": "9.1.7",
"is-ci": "3.0.1",
"knip": "5.39.1",
"lint-staged": "15.2.10",
"npm-run-all2": "6.2.6",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.7.2",
"webpack": "5.97.0",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0",
"webpack-shell-plugin-next": "2.3.2"
}
}