-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "subzilla",
"version": "1.0.0",
"description": "A powerful subtitle converter with UTF-8 and Arabic language support",
"main": "dist/cli/main.js",
"bin": "./dist/cli/main.js",
"_moduleAliases": {
"@subzilla/cli": "dist/cli",
"@subzilla/core": "dist/core",
"@subzilla/types": "dist/types"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli/main.js",
"dev": "tsc --watch",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [
"subtitle",
"converter",
"utf8",
"arabic",
"srt"
],
"author": "",
"license": "ISC",
"dependencies": {
"chardet": "^2.0.0",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"glob": "^11.0.1",
"iconv-lite": "^0.6.3",
"module-alias": "^2.2.3",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chardet": "^1.0.0",
"@types/cli-progress": "^3.11.6",
"@types/commander": "^2.12.5",
"@types/glob": "^8.1.0",
"@types/iconv-lite": "^0.0.1",
"@types/mocha": "^10.0.6",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chai": "^4.3.10",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.8.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.7.3"
}
}