-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "eslint-plugin-alpinejs",
"version": "0.0.1",
"description": "coming soon",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"test": "vitest run",
"prepare": "husky",
"lint": "eslint . --ext .ts",
"build": "tsup",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@html-eslint/parser": "^0.37.0",
"@html-eslint/types": "^0.37.0",
"@types/espree": "^10.1.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@typescript-eslint/rule-tester": "^8.29.0",
"acorn-walk": "^8.3.4",
"eslint": "^9.23.0",
"eslint-rule-tester": "^2.0.0",
"espree": "^10.3.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"vitest": "^3.1.1"
}
}