-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.29 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"name": "microfox",
"scripts": {
"prebuild": "npm install --force",
"build": "turbo build --env-mode=loose",
"build:watch": "turbo build --env-mode=loose -- --watch",
"build:mediamake": "turbo build --env-mode=loose --filter=mediamake",
"changeset": "changeset",
"clean": "turbo clean",
"dev": "turbo dev",
"lint": "turbo lint",
"prettier-check": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"type-check": "turbo type-check",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"test": "turbo test -- --passWithNoTests --",
"test:watch": "turbo test --watch",
"test:coverage": "turbo test --coverage",
"ci:release": "turbo clean && changeset publish",
"ci:version": "changeset version && npm install",
"clean-examples": "node .github/scripts/cleanup-examples-changesets.mjs && npm install"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@babel/parser": "^7.28.4",
"@changesets/cli": "2.27.10",
"@types/fluent-ffmpeg": "^2.1.27",
"esbuild": "^0.25.0",
"eslint": "8.57.1",
"eslint-config-microfox": "*",
"npm-run-all2": "^7.0.2",
"patch-package": "^8.0.1",
"prettier": "^3.3.3",
"tsup": "^8",
"turbo": "2.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"apps/*",
"packages/*",
"tools/*",
"examples/*",
"scripts/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microfox-ai/microfox.git"
},
"bugs": {
"url": "https://github.com/microfox-ai/microfox/issues"
},
"keywords": [
"microfox"
],
"packageManager": "npm@10.2.4",
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@remotion/google-fonts": "4.0.355",
"@tiptap/extension-bubble-menu": "^3.4.4",
"@types/diff": "^7.0.2",
"@use-gesture/react": "^10.3.1",
"diff": "^8.0.2",
"fluent-audiowaveform": "^1.0.8",
"fluent-ffmpeg": "^2.1.3",
"glob": "^11.0.1",
"rollup": "^4.52.2"
},
"overrides": {
"@aws-sdk/*": "3.787.0"
},
"type": "module"
}