-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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": "jspf-cli",
"version": "1.0.8",
"description": "JSPF CLI is a command line utility (CLI) relying on the JSPF format to convert and validate playlist files.",
"keywords": [
"playlist",
"jspf",
"json",
"xspf",
"m3u8",
"m3u",
"pls",
"convert",
"convertor",
"conversion",
"parse",
"parser",
"parsing",
"validate",
"validation"
],
"author": {
"name": "Spiff Radio"
},
"repository": {
"type": "git",
"url": "https://github.com/spiff-radio/jspf-cli.git"
},
"bugs": {
"url": "https://github.com/spiff-radio/jspf-cli/issues"
},
"homepage": "https://github.com/spiff-radio/jspf-cli#readme",
"license": "GPL",
"main": "./build/cli/index.js",
"bin": {
"jspf-cli": "./build/cli/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/cli/index.ts",
"start:windows": "nodemon --watch 'src/**/*.ts' --exec \"npx ts-node\" src/cli/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"install-local": "npm i -g && jspf-cli",
"uninstall-local": "npm uninstall -g && jspf-cli",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"clear": "^0.1.0",
"figlet": "^1.7.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"m3u8-parser": "^7.2.0",
"reflect-metadata": "^0.2.2",
"xml-js": "^1.6.11",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.4",
"@types/validator": "^13.12.2",
"@types/yargs": "^17.0.33",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}