-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "hekaya",
"private": true,
"description": "Arabic-first screenplay markup language and toolchain",
"license": "MIT",
"author": "Cairo Indie Filmmakers Club",
"repository": {
"type": "git",
"url": "https://github.com/michaelkmalak/hekaya.git"
},
"bugs": {
"url": "https://github.com/michaelkmalak/hekaya/issues"
},
"homepage": "https://github.com/michaelkmalak/hekaya#readme",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test -- --coverage",
"test:watch": "pnpm -r test:watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.4.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "^0.27.4",
"eslint": "^10.0.1",
"husky": "^9.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"typescript-eslint": "^8.56.0"
},
"version": "1.5.0"
}