-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.62 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
{
"name": "@conarti/eslint-plugin-feature-sliced",
"version": "1.0.5",
"description": "Feature-sliced design methodology plugin",
"repository": "https://github.com/conarti/eslint-plugin-fsd.git",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"feature-sliced",
"feature-slices",
"feature-driven",
"feature-based"
],
"files": [
"dist",
"CHANGELOG.md"
],
"author": "conarti",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./import-order": "./dist/configs/import-order/index.js"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"lint": "npm-run-all \"lint:*\"",
"lint:js": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui --api 9527",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"local-build": "node scripts/local-build.js",
"release": "node scripts/release.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@tsconfig/node14": "^14.1.0",
"@types/eslint": "^8.44.0",
"@types/node": "^20.4.2",
"@types/picomatch": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@typescript-eslint/utils": "^6.1.0",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-plugin": "^5.1.1",
"eslint-plugin-filenames-simple": "^0.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-modules-newlines": "^0.0.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.2.6",
"execa": "5.1.1",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"rimraf": "^5.0.1",
"semver": "^7.5.4",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-alpha.64",
"vitest": "^0.33.0"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7",
"eslint-plugin-import": ">=2.26"
},
"license": "ISC",
"dependencies": {
"picomatch": "^2.3.1"
}
}