-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.49 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.49 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
{
"name": "@sijad/astro-wordpres",
"scripts": {
"clean": "rimraf -g \"packages/**/lib\" \"packages/**/*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.build.json",
"test": "npm run --ws test --if-present",
"prepare": "npm run compile",
"release": "npm --workspaces publish --access public",
"lint": "npm-run-all --parallel lint:js+ts lint:format lint:types",
"lint:astro": "astro check",
"lint:js+ts": "eslint --ext .astro,.js,.jsx,.cjs,.ts,.tsx,.cts .",
"lint:format": "prettier --check .",
"lint:types": "tsc -p tsconfig.build.json --noEmit",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:js+ts": "npm run lint:js+ts --fix",
"lint:fix:format": "prettier --write ."
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@stylistic/eslint-plugin": "^4.2.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.4",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "5.0.5",
"typescript": "^5.3.3",
"typescript-eslint": "^8.28.0"
},
"workspaces": [
"demo",
"packages/*"
]
}