-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.83 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
{
"name": "@tokenizer/s3",
"version": "0.4.2",
"description": "Amazon S3 tokenizer",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map' 'coverage'",
"mocha": "mocha",
"test": "yarn run lint && yarn run mocha",
"compile-lib": "tsc -p lib/tsconfig.json",
"compile-test": "tsc -p test",
"compile": "yarn run compile-lib && yarn run compile-test",
"build": "yarn run clean && yarn run compile",
"eslint": "eslint lib test",
"lint-ts": "biome check",
"lint": "yarn run lint-ts"
},
"keywords": [
"audio",
"S3",
"AWS",
"chunk",
"range",
"Amazon",
"cloud"
],
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"contributors": [
{
"email": "onken@netcubed.de",
"name": "Moritz Onken"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Borewit/tokenizer-s3.git"
},
"bugs": {
"url": "https://github.com/Borewit/tokenizer-s3/issues"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.679.0",
"@aws-sdk/credential-providers": "^3.679.0",
"@tokenizer/range": "^0.10.0",
"strtok3": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tokenizer/token": "^0.3.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.9",
"chai": "^5.1.1",
"del-cli": "^6.0.0",
"file-type": "^19.6.0",
"mocha": "^10.7.3",
"music-metadata": "^10.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"packageManager": "yarn@4.4.1"
}