-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.76 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
{
"name": "ts-data-structures",
"type": "module",
"version": "1.0.0",
"scripts": {
"commit": "cz",
"test:lint": "eslint . --fix --ext .ts",
"test:unit": "bun vitest run",
"test:unit:coverage": "bun vitest run --coverage",
"test:unit:watch": "bun vitest",
"ts:check": "tsc && bun clean",
"clean": "rm -rf dist",
"prettify": "npx prettier . --write --ignore-unknown",
"quality": "bun ts:check && bun test:lint && bun clean",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.isfunction": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^2.1.3",
"bun-types": "^1.1.30",
"commitizen": "^4.3.1",
"eslint": "8.57.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"semantic-release": "^24.1.2",
"type-fest": "^4.26.1",
"typescript": "^5.0.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.9"
}
}