-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "accessibility-devkit-workspace",
"private": true,
"author": {
"name": "Luke Steuber",
"email": "luke@lukesteuber.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lukeslp/accessibility-devkit.git"
},
"bugs": {
"url": "https://github.com/lukeslp/accessibility-devkit/issues"
},
"homepage": "https://github.com/lukeslp/accessibility-devkit#readme",
"scripts": {
"build": "pnpm --filter=\"./packages/*\" --parallel build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"test": "pnpm --filter=\"./packages/*\" --parallel test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.15.4"
}