-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.85 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
{
"private": true,
"name": "zone",
"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"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@babel/parser": "^7.28.4",
"@changesets/cli": "2.27.10",
"esbuild": "^0.25.0",
"eslint": "8.57.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.3.3",
"tsup": "^8",
"turbo": "2.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microfox-ai/zone.git"
},
"bugs": {
"url": "https://github.com/microfox-ai/zone/issues"
},
"keywords": [
"microfox",
"zone"
],
"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",
"@types/diff": "^7.0.2",
"@use-gesture/react": "^10.3.1",
"diff": "^8.0.2",
"glob": "^11.0.1",
"rollup": "^4.52.2"
},
"type": "module"
}