langgraph-cli 0.3.8__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/PKG-INFO +3 -3
  2. langgraph_cli-0.4.1/js-monorepo-example/.eslintrc.cjs +62 -0
  3. langgraph_cli-0.4.1/js-monorepo-example/apps/agent/langgraph.json +7 -0
  4. langgraph_cli-0.4.1/js-monorepo-example/apps/agent/package.json +18 -0
  5. langgraph_cli-0.4.1/js-monorepo-example/apps/agent/src/graph.ts +47 -0
  6. langgraph_cli-0.4.1/js-monorepo-example/apps/agent/src/state.ts +15 -0
  7. langgraph_cli-0.4.1/js-monorepo-example/apps/agent/tsconfig.json +9 -0
  8. langgraph_cli-0.4.1/js-monorepo-example/libs/shared/package.json +14 -0
  9. langgraph_cli-0.4.1/js-monorepo-example/libs/shared/src/index.ts +6 -0
  10. langgraph_cli-0.4.1/js-monorepo-example/libs/shared/tsconfig.json +9 -0
  11. langgraph_cli-0.4.1/js-monorepo-example/package.json +34 -0
  12. langgraph_cli-0.4.1/js-monorepo-example/tsconfig.json +16 -0
  13. langgraph_cli-0.4.1/js-monorepo-example/turbo.json +15 -0
  14. langgraph_cli-0.4.1/js-monorepo-example/yarn.lock +2204 -0
  15. langgraph_cli-0.4.1/langgraph_cli/__init__.py +1 -0
  16. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/cli.py +33 -3
  17. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/config.py +74 -12
  18. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/pyproject.toml +2 -2
  19. langgraph_cli-0.4.1/python-monorepo-example/apps/agent/langgraph.json +7 -0
  20. langgraph_cli-0.4.1/python-monorepo-example/apps/agent/pyproject.toml +19 -0
  21. langgraph_cli-0.4.1/python-monorepo-example/apps/agent/src/agent/__init__.py +1 -0
  22. langgraph_cli-0.4.1/python-monorepo-example/apps/agent/src/agent/graph.py +40 -0
  23. langgraph_cli-0.4.1/python-monorepo-example/apps/agent/src/agent/state.py +13 -0
  24. langgraph_cli-0.4.1/python-monorepo-example/libs/common/__init__.py +5 -0
  25. langgraph_cli-0.4.1/python-monorepo-example/libs/common/helpers.py +6 -0
  26. langgraph_cli-0.4.1/python-monorepo-example/libs/shared/pyproject.toml +20 -0
  27. langgraph_cli-0.4.1/python-monorepo-example/libs/shared/src/shared/__init__.py +5 -0
  28. langgraph_cli-0.4.1/python-monorepo-example/libs/shared/src/shared/utils.py +6 -0
  29. langgraph_cli-0.4.1/python-monorepo-example/pyproject.toml +46 -0
  30. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/schemas/schema.json +11 -0
  31. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/schemas/schema.v0.json +11 -0
  32. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/cli/test_cli.py +1 -1
  33. langgraph_cli-0.4.1/tests/unit_tests/pipconfig.txt +0 -0
  34. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/test_config.py +56 -56
  35. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/uv.lock +42 -42
  36. langgraph_cli-0.3.8/langgraph_cli/__init__.py +0 -1
  37. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/.gitignore +0 -0
  38. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/LICENSE +0 -0
  39. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/Makefile +0 -0
  40. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/README.md +0 -0
  41. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/.env.example +0 -0
  42. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/.gitignore +0 -0
  43. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/Makefile +0 -0
  44. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs/agent.py +0 -0
  45. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs/langgraph.json +0 -0
  46. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs/storm.py +0 -0
  47. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/__init__.py +0 -0
  48. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/graphs_submod/__init__.py +0 -0
  49. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/graphs_submod/agent.py +0 -0
  50. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/graphs_submod/subprompt.txt +0 -0
  51. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/hello.py +0 -0
  52. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/langgraph.json +0 -0
  53. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/prompt.txt +0 -0
  54. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_a/requirements.txt +0 -0
  55. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/graphs_submod/agent.py +0 -0
  56. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/graphs_submod/subprompt.txt +0 -0
  57. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/hello.py +0 -0
  58. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/langgraph.json +0 -0
  59. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/prompt.txt +0 -0
  60. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/requirements.txt +0 -0
  61. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/utils/__init__.py +0 -0
  62. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/graphs_reqs_b/utils/greeter.py +0 -0
  63. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/langgraph.json +0 -0
  64. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/my_app.py +0 -0
  65. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/pipconf.txt +0 -0
  66. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/poetry.lock +0 -0
  67. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/examples/pyproject.toml +0 -0
  68. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/generate_schema.py +0 -0
  69. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/.dockerignore +0 -0
  70. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/.env.example +0 -0
  71. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/.eslintrc.cjs +0 -0
  72. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/.gitignore +0 -0
  73. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/LICENSE +0 -0
  74. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/README.md +0 -0
  75. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/jest.config.js +0 -0
  76. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/langgraph.json +0 -0
  77. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/package.json +0 -0
  78. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/src/agent/graph.ts +0 -0
  79. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/src/agent/state.ts +0 -0
  80. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/static/studio.png +0 -0
  81. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/tests/agent.test.ts +0 -0
  82. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/tests/graph.int.test.ts +0 -0
  83. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/tsconfig.json +0 -0
  84. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/js-examples/yarn.lock +0 -0
  85. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/__main__.py +0 -0
  86. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/analytics.py +0 -0
  87. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/constants.py +0 -0
  88. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/docker.py +0 -0
  89. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/exec.py +0 -0
  90. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/progress.py +0 -0
  91. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/py.typed +0 -0
  92. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/templates.py +0 -0
  93. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/util.py +0 -0
  94. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/langgraph_cli/version.py +0 -0
  95. /langgraph_cli-0.3.8/tests/__init__.py → /langgraph_cli-0.4.1/python-monorepo-example/apps/agent/.env.example +0 -0
  96. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/schemas/version.schema.json +0 -0
  97. {langgraph_cli-0.3.8/tests/integration_tests → langgraph_cli-0.4.1/tests}/__init__.py +0 -0
  98. {langgraph_cli-0.3.8/tests/unit_tests → langgraph_cli-0.4.1/tests/integration_tests}/__init__.py +0 -0
  99. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/integration_tests/test_cli.py +0 -0
  100. {langgraph_cli-0.3.8/tests/unit_tests/cli → langgraph_cli-0.4.1/tests/unit_tests}/__init__.py +0 -0
  101. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/agent.py +0 -0
  102. /langgraph_cli-0.3.8/tests/unit_tests/cli/langgraph.json → /langgraph_cli-0.4.1/tests/unit_tests/cli/__init__.py +0 -0
  103. /langgraph_cli-0.3.8/tests/unit_tests/cli/pyproject.toml → /langgraph_cli-0.4.1/tests/unit_tests/cli/langgraph.json +0 -0
  104. /langgraph_cli-0.3.8/tests/unit_tests/multiplatform/js.mts → /langgraph_cli-0.4.1/tests/unit_tests/cli/pyproject.toml +0 -0
  105. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/cli/test_templates.py +0 -0
  106. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/conftest.py +0 -0
  107. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/graphs/agent.py +0 -0
  108. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/helpers.py +0 -0
  109. /langgraph_cli-0.3.8/tests/unit_tests/multiplatform/python.py → /langgraph_cli-0.4.1/tests/unit_tests/multiplatform/js.mts +0 -0
  110. /langgraph_cli-0.3.8/tests/unit_tests/pipconfig.txt → /langgraph_cli-0.4.1/tests/unit_tests/multiplatform/python.py +0 -0
  111. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/test_config.json +0 -0
  112. {langgraph_cli-0.3.8 → langgraph_cli-0.4.1}/tests/unit_tests/test_docker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-cli
3
- Version: 0.3.8
3
+ Version: 0.4.1
4
4
  Summary: CLI for interacting with LangGraph API
5
5
  Project-URL: Repository, https://www.github.com/langchain-ai/langgraph
6
6
  License-Expression: MIT
@@ -9,8 +9,8 @@ Requires-Python: >=3.9
9
9
  Requires-Dist: click>=8.1.7
10
10
  Requires-Dist: langgraph-sdk>=0.1.0; python_version >= '3.11'
11
11
  Provides-Extra: inmem
12
- Requires-Dist: langgraph-api<0.4.0,>=0.2.120; (python_version >= '3.11') and extra == 'inmem'
13
- Requires-Dist: langgraph-runtime-inmem>=0.6.8; (python_version >= '3.11') and extra == 'inmem'
12
+ Requires-Dist: langgraph-api<0.5.0,>=0.3; (python_version >= '3.11') and extra == 'inmem'
13
+ Requires-Dist: langgraph-runtime-inmem>=0.7; (python_version >= '3.11') and extra == 'inmem'
14
14
  Requires-Dist: python-dotenv>=0.8.0; extra == 'inmem'
15
15
  Description-Content-Type: text/markdown
16
16
 
@@ -0,0 +1,62 @@
1
+ module.exports = {
2
+ extends: [
3
+ "eslint:recommended",
4
+ "prettier",
5
+ "plugin:@typescript-eslint/recommended",
6
+ ],
7
+ parserOptions: {
8
+ ecmaVersion: 12,
9
+ parser: "@typescript-eslint/parser",
10
+ project: "./tsconfig.json",
11
+ sourceType: "module",
12
+ },
13
+ plugins: ["import", "@typescript-eslint", "no-instanceof"],
14
+ ignorePatterns: [
15
+ ".eslintrc.cjs",
16
+ "scripts",
17
+ "src/utils/lodash/*",
18
+ "node_modules",
19
+ "dist",
20
+ "dist-cjs",
21
+ "*.js",
22
+ "*.cjs",
23
+ "*.d.ts",
24
+ ],
25
+ rules: {
26
+ "no-process-env": 2,
27
+ "no-instanceof/no-instanceof": 2,
28
+ "@typescript-eslint/explicit-module-boundary-types": 0,
29
+ "@typescript-eslint/no-empty-function": 0,
30
+ "@typescript-eslint/no-shadow": 0,
31
+ "@typescript-eslint/no-empty-interface": 0,
32
+ "@typescript-eslint/no-use-before-define": ["error", "nofunc"],
33
+ "@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
34
+ "@typescript-eslint/no-floating-promises": "error",
35
+ "@typescript-eslint/no-misused-promises": "error",
36
+ camelcase: 0,
37
+ "class-methods-use-this": 0,
38
+ "import/extensions": [2, "ignorePackages"],
39
+ "import/no-extraneous-dependencies": [
40
+ "error",
41
+ { devDependencies: ["**/*.test.ts"] },
42
+ ],
43
+ "import/no-unresolved": 0,
44
+ "import/prefer-default-export": 0,
45
+ "keyword-spacing": "error",
46
+ "max-classes-per-file": 0,
47
+ "max-len": 0,
48
+ "no-await-in-loop": 0,
49
+ "no-bitwise": 0,
50
+ "no-console": 0,
51
+ "no-restricted-syntax": 0,
52
+ "no-shadow": 0,
53
+ "no-continue": 0,
54
+ "no-underscore-dangle": 0,
55
+ "no-use-before-define": 0,
56
+ "no-useless-constructor": 0,
57
+ "no-return-await": 0,
58
+ "consistent-return": 0,
59
+ "no-else-return": 0,
60
+ "new-cap": ["error", { properties: false, capIsNew: false }],
61
+ },
62
+ };
@@ -0,0 +1,7 @@
1
+ {
2
+ "node_version": "20",
3
+ "graphs": {
4
+ "agent": "./src/graph.ts:graph"
5
+ },
6
+ "env": "../../.env"
7
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@js-monorepo-example/agent",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "src/graph.ts",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "clean": "rm -rf dist"
9
+ },
10
+ "dependencies": {
11
+ "@js-monorepo-example/shared": "*",
12
+ "@langchain/core": "^0.3.2",
13
+ "@langchain/langgraph": "^0.2.5"
14
+ },
15
+ "devDependencies": {
16
+ "typescript": "^5.3.3"
17
+ }
18
+ }
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Simple LangGraph.js example for monorepo testing
3
+ */
4
+ import { StateGraph } from "@langchain/langgraph";
5
+ import { RunnableConfig } from "@langchain/core/runnables";
6
+ import { StateAnnotation } from "./state.js";
7
+ import { getGreeting } from "@js-monorepo-example/shared";
8
+
9
+ /**
10
+ * Simple node that uses the shared library
11
+ */
12
+ const callModel = async (
13
+ state: typeof StateAnnotation.State,
14
+ _config: RunnableConfig,
15
+ ): Promise<typeof StateAnnotation.Update> => {
16
+ // Use functions from the shared library
17
+ const greeting = getGreeting();
18
+
19
+ return {
20
+ messages: [
21
+ {
22
+ role: "assistant",
23
+ content: `${greeting}`,
24
+ },
25
+ ],
26
+ };
27
+ };
28
+
29
+ /**
30
+ * Simple routing function
31
+ */
32
+ export const route = (
33
+ state: typeof StateAnnotation.State,
34
+ ): "__end__" | "callModel" => {
35
+ if (state.messages.length > 0) {
36
+ return "__end__";
37
+ }
38
+ return "callModel";
39
+ };
40
+
41
+ // Create the graph
42
+ const builder = new StateGraph(StateAnnotation)
43
+ .addNode("callModel", callModel)
44
+ .addEdge("__start__", "callModel")
45
+ .addConditionalEdges("callModel", route);
46
+
47
+ export const graph = builder.compile();
@@ -0,0 +1,15 @@
1
+ import { BaseMessage, BaseMessageLike } from "@langchain/core/messages";
2
+ import { Annotation, messagesStateReducer } from "@langchain/langgraph";
3
+
4
+ /**
5
+ * Simple state annotation for the agent
6
+ */
7
+ export const StateAnnotation = Annotation.Root({
8
+ /**
9
+ * Messages track the primary execution state of the agent.
10
+ */
11
+ messages: Annotation<BaseMessage[], BaseMessageLike[]>({
12
+ reducer: messagesStateReducer,
13
+ default: () => [],
14
+ }),
15
+ });
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./dist",
5
+ "rootDir": "./src"
6
+ },
7
+ "include": ["src/**/*"],
8
+ "exclude": ["node_modules", "dist"]
9
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@js-monorepo-example/shared",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "clean": "rm -rf dist"
10
+ },
11
+ "devDependencies": {
12
+ "typescript": "^5.3.3"
13
+ }
14
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Simple utility functions for monorepo testing
3
+ */
4
+ export function getGreeting(): string {
5
+ return "Hello from shared library!";
6
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./dist",
5
+ "rootDir": "./src"
6
+ },
7
+ "include": ["src/**/*"],
8
+ "exclude": ["node_modules", "dist"]
9
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "js-monorepo-example",
3
+ "version": "0.0.1",
4
+ "packageManager": "yarn@1.22.22",
5
+ "description": "A simple monorepo example for LangGraph integration testing.",
6
+ "private": true,
7
+ "workspaces": [
8
+ "libs/*",
9
+ "apps/*"
10
+ ],
11
+ "type": "module",
12
+ "scripts": {
13
+ "build": "turbo build",
14
+ "clean": "turbo clean",
15
+ "test": "turbo test",
16
+ "format": "prettier --write .",
17
+ "lint": "eslint 'apps/**/*.ts' 'libs/**/*.ts'"
18
+ },
19
+ "devDependencies": {
20
+ "turbo": "^2.5.0",
21
+ "typescript": "^5.3.3",
22
+ "@tsconfig/recommended": "^1.0.7",
23
+ "@eslint/eslintrc": "^3.1.0",
24
+ "@eslint/js": "^9.9.1",
25
+ "eslint": "^8.41.0",
26
+ "eslint-config-prettier": "^8.8.0",
27
+ "eslint-plugin-import": "^2.27.5",
28
+ "eslint-plugin-no-instanceof": "^1.0.1",
29
+ "eslint-plugin-prettier": "^4.2.1",
30
+ "@typescript-eslint/eslint-plugin": "^5.59.8",
31
+ "@typescript-eslint/parser": "^5.59.8",
32
+ "prettier": "^3.3.3"
33
+ }
34
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "extends": "@tsconfig/recommended",
3
+ "compilerOptions": {
4
+ "target": "ES2022",
5
+ "module": "ESNext",
6
+ "moduleResolution": "node",
7
+ "allowSyntheticDefaultImports": true,
8
+ "esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ "strict": true,
11
+ "declaration": true,
12
+ "outDir": "./dist"
13
+ },
14
+ "include": ["apps/**/*", "libs/**/*"],
15
+ "exclude": ["node_modules", "dist"]
16
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://turbo.build/schema.json",
3
+ "tasks": {
4
+ "build": {
5
+ "dependsOn": ["^build"],
6
+ "outputs": ["dist/**"]
7
+ },
8
+ "clean": {
9
+ "dependsOn": ["^clean"]
10
+ },
11
+ "test": {
12
+ "dependsOn": ["^test"]
13
+ }
14
+ }
15
+ }