forked from Just-Moh-it/Relano
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.02 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
69
{
"name": "relano",
"version": "0.1.0",
"private": true,
"scripts": {
"preview": "BROWSER=0 remotion preview remotion/index.ts",
"render": "remotion render remotion/index.ts basecomp",
"generate-yaml": "npx ts-node utils/create-release-notes-yaml.ts",
"build": "tsc",
"format": "prettier --write '**/*.{ts,tsx}'",
"format-check": "echo \"Adding later\"",
"lint": "echo \"Adding later\" ",
"package": "ncc build --source-map --license licenses.txt main.ts",
"test": "jest",
"all": "pnpm run build && pnpm run format && pnpm run lint && pnpm run package && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/just-moh-it/relano.git"
},
"keywords": [
"release notes video",
"whats new video",
"automatic community management"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@bdsqqq/try": "^2.3.1",
"@remotion/google-fonts": "3.3.94",
"@remotion/lambda": "3.3.94",
"@remotion/media-utils": "3.3.94",
"@remotion/player": "3.3.94",
"@remotion/renderer": "3.3.94",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"clsx": "^1.2.1",
"commander": "^10.0.1",
"eslint": "8.39.0",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"remotion": "3.3.94",
"tailwind-merge": "^1.12.0",
"typescript": "5.0.4",
"yaml": "^2.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@remotion/bundler": "3.3.94",
"@remotion/cli": "3.3.94",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"autoprefixer": "10.4.14",
"css-loader": "^6.7.3",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"postcss": "8.4.23",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.3.2",
"prettier": "^2.8.8",
"style-loader": "^3.3.2",
"tailwindcss": "3.3.2"
}
}