-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@github/mini-throttle",
"version": "2.1.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/github/mini-throttle"
},
"license": "MIT",
"author": "GitHub Inc. (https://github.com)",
"files": [
"dist",
"!dist/test",
"!dist/umd/test",
"decorators"
],
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "npm run build-umd && npm run build-esm",
"build-esm": "tsc",
"build-umd": "tsc -m umd --outDir dist/umd",
"clean": "rm -rf dist",
"lint": "eslint . --report-unused-disable-directives --color && tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "vitest run",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "0.0.4",
"@types/debug": "^4.1.12",
"@types/node": "^24.7.0",
"@vitest/browser": "^4.1.8",
"@vitest/browser-playwright": "^4.1.8",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-compat": "^7.0.2",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-github": "^6.0.0",
"playwright": "^1.60.0",
"prettier": "^2.2.1",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"overrides": {
"eslint-plugin-github": {
"eslint": "$eslint"
},
"eslint-plugin-import": {
"eslint": "$eslint"
},
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
},
"eslint-plugin-eslint-comments": "npm:@eslint-community/eslint-plugin-eslint-comments@^4.7.2",
"@eslint/compat": "^2.1.0"
}
}