This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "greenscreen",
"private": true,
"version": "0.0.0",
"description": "A browser streaming engine.",
"author": "Clowdr CIC",
"license": "AGPL-3.0-or-later",
"scripts": {
"docker:start": "docker compose --env-file .env.current -f ./docker-compose.db.yaml up",
"lint-staged": "lint-staged",
"pnpm-context": "node .scripts/pnpm-context.mjs",
"preinstall": "npx -y only-allow pnpm",
"prepare": "node .scripts/prepare.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdr-app/greenscreen.git"
},
"bugs": {
"url": "https://github.com/clowdr-app/greenscreen/issues"
},
"homepage": "https://github.com/clowdr-app/greenscreen#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@pnpm/filter-workspace-packages": "^4.4.8",
"@pnpm/logger": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.1.1",
"eslint": "^7.29.0",
"globby": "^12.0.2",
"husky": "^7.0.0",
"lint-staged": "^11.1.1",
"meow": "^10.1.2",
"mississippi": "^4.0.0",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.2.0",
"tar": "^6.1.11",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,json,md}": "prettier --write"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.x",
"pnpm": "^6.x"
}
}