-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "eslint-plugin-svelte-runes",
"author": "Not-Jayden",
"version": "0.0.11",
"main": "lib/index.js",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"url": "https://www.github.com/Not-Jayden/eslint-plugin-svelte-runes",
"type": "git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"svelte",
"runes"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"test": "vitest",
"pretty": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"@types/eslint": "^8.44.6",
"@types/estree": "^1.0.4",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "8.52.0",
"eslint-plugin-eslint-plugin": "^5.1.1",
"eslint-plugin-n": "^16.2.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsconfig-paths": "^4.2.0",
"typescript": "5.2.2",
"vitest": "^0.34.6"
}
}