-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.55 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
{
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/package.json",
"name": "@zenflux/zenflux",
"author": "Leonid Vinikov <[email protected]> (https://github.com/iNewLegend)",
"license": "MIT",
"type": "module",
"version": "0.1.0",
"keywords": [
"zenflux",
"commands",
"commands manager",
"typescript node vm",
"rx state manager",
"logging"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zenflux/zenflux.git"
},
"workspaces": [
"packages/*",
"packages-react/*",
"zenflux-react-app-examples/*"
],
"scripts": {
"@z-flux:eslint": "eslint .",
"@z-flux:eslint:bun": "bunx --bun eslint .",
"@z-flux:dev": "@z-cli @watch --dev",
"@z-flux:core:build": "@z-cli @build --workspace core",
"@z-flux:react:build": "@z-cli @build --workspace react-* --dev",
"@z-flux:react:dev": "@z-cli @watch --workspace react-* --dev",
"@z-flux:react-reconciler-dev": "@z-cli @watch --workspace react-reconciler --dev",
"@z-flux:react:eslint:ci": "time ( bunx --bun eslint packages-react --cache --cache-strategy content )",
"@z-flux:react:test:ci": "time ( @z-jest --ci --bail --selectedProjects react-test-renderer,react-cache,react-scheduler,internal-test-utils,react-reconciler )",
"@z-flux:react:build:ci": "time ( @z-cli @build --workspace \"react-*\" --haltOnDiagnosticError )"
},
"packageManager": "[email protected]"
}