-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "binning",
"type": "module",
"version": "0.1.19",
"license": "MIT",
"description": "Correlated data analyzer written in TypeScript",
"keywords": [
"Monte Carlo",
"data analysis",
"statistics"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EarlMilktea/binning.git"
},
"engines": {
"node": ">=20"
},
"bin": {
"binning": "dist/src/bin.js"
},
"sideEffects": [
"./dist/src/bin.js"
],
"exports": {
".": "./dist/src/index.js",
"./binner.js": "./dist/src/binner.js",
"./cli.js": "./dist/src/cli.js",
"./data-io.js": "./dist/src/data-io.js",
"./stats.js": "./dist/src/stats.js"
},
"types": "./dist/src/index.d.ts",
"dependencies": {
"argparse": "^2.0.1",
"typebox": "^1.2.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tsconfig/node20": "^20.1.9",
"@types/argparse": "^2.0.17",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "10.4.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^63.0.2",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"npm-run-all2": "^9.0.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:check": "tsc -p tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache --cache-strategy content",
"prepack": "run-s build",
"test": "vitest run"
}
}