-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "snipcast",
"version": "0.0.2",
"description": "Convert Markdown snippets into beautiful, animated code-typing videos.",
"type": "module",
"main": "./dist/index.js",
"bin": {
"snipcast": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"remotion",
"video",
"code",
"markdown",
"typing",
"shiki",
"animation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Hive-Colombia/snipcast.git"
},
"homepage": "https://github.com/Code-Hive-Colombia/snipcast#readme",
"bugs": {
"url": "https://github.com/Code-Hive-Colombia/snipcast/issues"
},
"contributors": [
{
"name": "null-d-e-v"
},
{
"name": "devplague"
}
],
"scripts": {
"dev": "bun src/index.ts",
"build": "bun build src/index.ts --bundle --target=node --outfile=dist/index.js --external remotion --external @remotion/* --external react --external react-dom --external shiki --external canvas --external fs-extra --external commander --external ora --external chalk --external gray-matter --external remark --external remark-parse && mkdir -p dist/remotion && cp -r src/remotion/* dist/remotion/",
"prepare": "npm run build"
},
"devDependencies": {
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
},
"peerDependencies": {
"typescript": "5"
},
"dependencies": {
"@remotion/bundler": "^4.0.402",
"@remotion/cli": "^4.0.402",
"@remotion/renderer": "^4.0.402",
"@remotion/web-renderer": "^4.0.402",
"canvas": "^3.2.0",
"chalk": "5.6.2",
"commander": "14.0.2",
"fs-extra": "11.3.3",
"gray-matter": "4.0.3",
"ora": "9.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"remark": "15.0.1",
"remark-parse": "11.0.0",
"remotion": "^4.0.402",
"shiki": "^3.20.0",
"zod": "4.3.5"
}
}