-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
{
"name": "subzilla",
"version": "1.0.0",
"description": "A powerful subtitle converter with UTF-8 and Arabic language support",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build && yarn workspaces foreach --all run build",
"start": "yarn workspace @subzilla/cli start",
"dev": "yarn workspaces foreach --all --parallel run dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"type-check": "tsc --build --dry && yarn workspaces foreach --all run type-check",
"lint": "yarn workspaces foreach --all run lint",
"lint:fix": "yarn workspaces foreach --all run lint:fix",
"format": "yarn workspaces foreach --all run format",
"format:check": "yarn workspaces foreach --all run format:check",
"prettify": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\" --ignore-path .gitignore",
"clean": "yarn workspaces foreach --all exec rm -rf dist && rm -rf dist",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "yarn@4.9.4",
"keywords": [
"subtitle",
"converter",
"utf8",
"arabic",
"srt"
],
"author": {
"name": "Obada Qawwas",
"email": "info@onyxdev.net",
"url": "https://onyxdev.net"
},
"license": "ISC",
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@jest/globals": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.1.3",
"jest-environment-node": "^30.1.2",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.6"
}
}