-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.27 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ascall",
"version": "1.0.0",
"description": "A lightweight async call handler with built-in error and response management",
"keywords": [
"async",
"request",
"typescript",
"response-manager",
"error-handling",
"promise",
"api-call"
],
"license": "ISC",
"author": "saberls",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "node esbuild.config.js && tsc -p tsconfig.json",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"clean:all": "rimraf dist node_modules",
"clean:restart": "npm run clean && npm install",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"lint:check": "eslint \"**/*.{ts,tsx,mts,cts,cjs,mjs,js,jsx,md}\"",
"lint:fix": "eslint --fix \"**/*.{ts,tsx,mts,cts,cjs,mjs,js,jsx,md}\"",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "jest --config jest.config.mjs",
"test:types": "tsd"
},
"lint-staged": {
"*.{ts,mts,cts,tsx,js,mjs,cjs,jsx}": [
"eslint --fix",
"prettier --write"
],
"!test-d/**/*.ts": [],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"esbuild": "^0.25.12",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.18.0",
"eslint": "^9.34.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.1.1",
"jiti": "^2.5.1",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-sort-json": "^4.1.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"tsd": "^0.33.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"tsd": {
"directory": "src",
"compilerOptions": {
"target": "es2022",
"lib": [
"es2022"
]
}
}
}