-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "live-region",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"clean": "npm run clean -ws --if-present",
"clean:all": "npm run clean -ws --if-present && rimraf node_modules packages/*/node_modules website/node_modules",
"build": "npm run build -ws --if-present",
"format": "prettier --cache --write '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"format:diff": "prettier --cache --list-different '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"lint": "eslint .",
"release": "npm run clean && npm run build && changeset publish",
"test": "vitest",
"type-check": "npm run type-check -ws --if-present"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@github/prettier-config": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.3",
"vitest": "^2.0.5",
"vitest-dom": "^0.1.1"
}
}