-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
59
60
61
62
63
64
65
{
"name": "@jaysongcs/micro-batcher",
"version": "0.0.2",
"description": "Interval-based micro batching library for TypeScript/JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest run --coverage",
"test:dev": "vitest watch",
"build": "tsup",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"lint:debug": "eslint src/** --debug",
"prepare": "husky || true"
},
"lint-staged": {
"*.{js,ts}": [
"eslint src/** --max-warnings=0 --ext .ts,.tsx",
"prettier --write --ignore-unknown"
],
"*.{json,html}": [
"prettier --write --ignore-unknown"
]
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/JaysonGCS/micro-batcher.git"
},
"keywords": [
"micro",
"batch",
"processing"
],
"author": {
"name": "Jayson Goh",
"url": "https://github.com/JaysonGCS"
},
"bugs": {
"url": "https://github.com/JaysonGCS/micro-batcher/issues"
},
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.5.7",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"tsup": "^7.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0"
}
}