forked from microfox-ai/microfox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 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
{
"private": true,
"name": "microfox",
"scripts": {
"build": "turbo build",
"build:watch": "turbo build -- --watch",
"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",
"test:watch": "turbo test --watch",
"test:coverage": "turbo test --coverage",
"ci:release": "turbo clean && turbo build && 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": {
"@changesets/cli": "2.27.10",
"eslint": "8.57.1",
"eslint-config-microfox": "*",
"npm-run-all2": "^7.0.2",
"prettier": "^3.3.3",
"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",
"glob": "^11.0.1",
"zod": "^3.24.3"
},
"type": "module"
}