-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"private": true,
"name": "@woltapp/browserbug-root",
"version": "0.0.0",
"description": "Document, and eventually remove, browser bug workarounds",
"license": "MIT",
"author": "Wolt Enterprises Oy",
"repository": {
"type": "git",
"url": "https://github.com/woltapp/browserbug.git"
},
"scripts": {
"build": "pnpm --recursive run build",
"changeset:release": "pnpm build && changeset tag && pnpm --recursive publish --access public",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"check-types": "pnpm --recursive run check-types",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm --recursive lint",
"prepare": "husky",
"release": "pnpm --recursive publish",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@tsconfig/node20": "20.1.4",
"@vitest/coverage-v8": "2.1.4",
"eslint": "9.13.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"publint": "0.2.12",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3",
"typescript-eslint": "8.12.1",
"vitest": "2.1.4"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts}": "eslint --fix",
"*": "prettier --write --ignore-unknown",
"package.json": "prettier-package-json --write"
},
"packageManager": "pnpm@9.12.2"
}