-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 2.64 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
{
"name": "eslint-plugin-pinia",
"version": "0.1.4",
"license": "MIT",
"description": "ESLint plugin for Pinia best practices",
"repository": {
"type": "git",
"url": "git+https://github.com/lisilinhart/eslint-plugin-pinia.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslint-config",
"vue",
"vuejs",
"pinia",
"piniajs",
"rules"
],
"author": "Lisi Linhart (https://github.com/lisilinhart)",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"publishConfig": {
"@lisilinhart:registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "unbuild",
"update": "tsx scripts/update && npm run update:eslint-docs",
"lint:md": "markdownlint \"**/*.md\" --fix",
"lint:eslint-docs": "npm run build && eslint-doc-generator --check",
"lint:js": "eslint . --fix",
"lint": "concurrently --prefixColors auto \"npm:lint:*\"",
"release": "npm run bump && npm publish",
"bump": "npm run build && bumpp package.json --commit --push --tag",
"stub": "unbuild --stub",
"test:ci": "vitest run",
"test": "vitest",
"init:eslint-docs": "npm run build && eslint-doc-generator --init-rule-docs",
"update:eslint-docs": "npm run build && eslint-doc-generator",
"tsc": "tsc --noEmit",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@babel/types": "^7.25.4",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"@veritem/eslint-config": "^0.0.11",
"bumpp": "^9.5.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-pinia": "file:.",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.2.0",
"execa": "^9.3.1",
"husky": "^9.1.5",
"markdownlint-cli": "^0.41.0",
"pinia": "^2.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.18.0",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">= 18"
},
"peerDependencies": {
"@typescript-eslint/utils": ">= 7.5 || 8.0.1",
"eslint": ">=8.0.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/utils": {
"optional": true
}
},
"release": {
"branches": [
"main"
]
}
}