|
14 | 14 | }, |
15 | 15 | "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-scripts/", |
16 | 16 | "bin": { |
17 | | - "lc-build": "bin/build" |
| 17 | + "lc-build": "bin/build.js" |
18 | 18 | }, |
19 | 19 | "scripts": { |
20 | 20 | "build": "yarn clean && yarn build:esm && yarn build:cjs && yarn build:scripts", |
|
26 | 26 | "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts", |
27 | 27 | "lint": "yarn lint:eslint && yarn lint:dpdm", |
28 | 28 | "lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm", |
29 | | - "clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 node ./bin/build --config ./langchain.config.js --create-entrypoints --pre", |
| 29 | + "clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 node ./bin/build.js --config ./langchain.config.js --create-entrypoints --pre", |
30 | 30 | "prepack": "yarn build", |
31 | 31 | "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%", |
32 | 32 | "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts", |
33 | 33 | "test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000", |
34 | 34 | "test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%", |
35 | 35 | "format": "prettier --write \"src\"", |
36 | 36 | "format:check": "prettier --check \"src\"", |
37 | | - "move-cjs-to-dist": "node ./bin/build --config ./langchain.config.js --move-cjs-dist", |
38 | | - "create-entrypoints": "node ./bin/build --config ./langchain.config.js --create-entrypoints", |
39 | | - "check-tree-shaking": "node ./bin/build --config ./langchain.config.js --tree-shaking" |
| 37 | + "move-cjs-to-dist": "node ./bin/build.js --config ./langchain.config.js --move-cjs-dist", |
| 38 | + "create-entrypoints": "node ./bin/build.js --config ./langchain.config.js --create-entrypoints", |
| 39 | + "check-tree-shaking": "node ./bin/build.js --config ./langchain.config.js --tree-shaking" |
40 | 40 | }, |
41 | 41 | "author": "LangChain", |
42 | 42 | "license": "MIT", |
|
0 commit comments