-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@kwooshung/algorithm-sorts",
"version": "1.0.14",
"title": "algorithm-sorts",
"description": "Better algorithm implementation library",
"private": false,
"tags": [
"kwooshung",
"algorithms",
"algorithms.js",
"algorithm-sorts",
"algorithm-sorts.js",
"suanfa"
],
"keywords": [
"kwooshung",
"algorithms",
"algorithms.js",
"algorithm-sorts",
"algorithm-sorts.js",
"suanfa"
],
"author": "kwooshung",
"homepage": "https://github.com/kwooshung/AlgorithmSorts",
"repository": {
"type": "git",
"url": "https://github.com/kwooshung/AlgorithmSorts.git"
},
"bugs": {
"url": "https://github.com/kwooshung/AlgorithmSorts/issues"
},
"type": "module",
"main": "dist/algorithm-sorts.cjs",
"module": "dist/algorithm-sorts.mjs",
"unpkg": "dist/algorithm-sorts.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/algorithm-sorts.cjs",
"import": "./dist/algorithm-sorts.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"dev": "cross-env NODE_ENV=development vite",
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest watch --coverage",
"test:ci": "vitest run --coverage",
"compare": "node ./src/compare.cjs",
"eslint": "eslint . --fix --cache --quiet --report-unused-disable-directives --max-warnings 0 --ext .js,.cjs,.jsx,.ts,.cts,.tsx"
},
"devDependencies": {
"@kwooshung/cvlar": "^1.3.7",
"@types/chance": "^1.1.6",
"@types/cli-progress": "^3.11.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"algorithms": "^0.10.0",
"chalk": "4",
"chance": "^1.1.11",
"commitlint": "^18.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"terser": "^5.27.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.1"
},
"license": "MIT"
}