-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.58 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
{
"name": "scan-chart",
"version": "8.0.1",
"author": "Geo",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"description": "A library that scans charts for rhythm games like Clone Hero.",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm run build && changeset publish",
"test": "npx vitest run",
"test:watch": "npx vitest",
"scan": "npx tsx test/scan.ts",
"test:cli": "npx tsx test/corpus/reference-parity/hashes-cli.ts",
"lint": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"corpus:diff": "npx tsx test/corpus/differential/run.ts",
"corpus:parity": "npx tsx test/corpus/reference-parity/run.ts",
"lint:fix": "eslint . --cache --cache-location node_modules/.cache/eslint/ --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Geomitron/scan-chart.git"
},
"bugs": {
"url": "https://github.com/Geomitron/scan-chart/issues"
},
"homepage": "https://github.com/Geomitron/scan-chart#readme",
"dependencies": {
"@awasm/noble": "^0.1.1",
"@geomitron/midi-file": "^1.2.5",
"bottleneck": "^2.19.5",
"exifreader": "^4.23.2",
"fluent-ffmpeg": "^2.1.2",
"js-md5": "^0.8.3",
"lodash": "^4.17.21",
"rfc4648": "^1.5.3",
"sanitize-filename": "^1.6.3",
"stream-audio-fingerprint": "git+https://github.com/Geomitron/stream-audio-fingerprint.git",
"workerpool": "^6.4.0"
},
"devDependencies": {
"@angular-eslint/builder": "^21.3.1",
"@angular-eslint/eslint-plugin": "^21.3.1",
"@angular-eslint/eslint-plugin-template": "^21.3.1",
"@angular-eslint/schematics": "^21.3.1",
"@angular-eslint/template-parser": "^21.3.1",
"@changesets/cli": "^2.26.1",
"@eslint/js": "^9.39.4",
"@types/charset-detector": "^0.0.1",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/js-md5": "^0.7.2",
"@types/lodash": "^4.14.194",
"@types/node": "^25.9.1",
"@types/workerpool": "^6.4.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"scan-chart-baseline": "npm:scan-chart@8.0.1",
"tsup": "^6.7.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^4.1.2",
"yargs": "^18.0.0"
}
}