-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "@fridgefm/radio-core",
"author": "Grigory Gorshkov",
"version": "3.2.6",
"description": "internet radio engine made on NodeJS platform",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"radio",
"music",
"broadcast",
"mp3",
"stream",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ch1ller0/fridgefm-radio-core.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "tsx watch ./examples/server.ts",
"test:types": "tsc --noEmit",
"test:lint": "eslint ./src/**/*",
"test:unit": "jest --config jest.config.json",
"test:unit:cov": "jest --config jest.config.json --collectCoverage=true"
},
"dependencies": {
"@fridgefm/inverter": "^0.1.9",
"chalk": "^4.1.2",
"dev-null": "^0.1.1",
"fs-extra": "^11.0.1",
"get-mp3-duration": "^1.0.0",
"highland": "^2.13.5",
"klaw-sync": "^6.0.0",
"node-id3": "^0.2.6",
"typed-emitter": "^2.1.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^11.0.1",
"@types/highland": "^2.12.15",
"@types/jest": "^29.1.1",
"@types/klaw-sync": "^6.0.1",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jest": "^29.1.1",
"prettier": "^2.4.1",
"ts-jest": "^29.1.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/ch1ller0/fridgefm-radio-core/issues"
},
"homepage": "http://fridgefm.com"
}