-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "leetcode-problems",
"version": "1.0.1",
"description": "A collection of high-performance solutions to LeetCode algorithmic problems. This repository focuses on code readability, clean implementations, and optimal time/space complexity.",
"main": "index.js",
"scripts": {
"test": "node --import tsx --test",
"lint": "tsup ./src",
"prettier": "prettier . --check --ignore-path .prettierignore",
"prettier:fix": "prettier . --write --ignore-path .prettierignore",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"release": "standard-version && git push --follow-tags origin dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamehElalfi/leetcode-problems.git"
},
"keywords": [],
"author": "Sameh A. Elalfi <sameh.elalfi.mail@gmail.com>",
"license": "Apache-2.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/SamehElalfi/leetcode-problems/issues"
},
"homepage": "https://github.com/SamehElalfi/leetcode-problems#readme",
"dependencies": {
"tsx": "^4.20.6"
},
"devDependencies": {
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
}
}