forked from langfuse/langfuse-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.56 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
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
75
76
{
"name": "langfuse-js",
"description": "Modular monorepo for all Langfuse JS/TS SDKs",
"workspaces": [
"langfuse-core",
"langfuse-node",
"langfuse",
"langfuse-langchain"
],
"author": {
"name": "Langfuse",
"email": "hi@langfuse.com",
"url": "https://langfuse.com"
},
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn compile",
"lint": "eslint -c .eslintrc.cjs --fix langfuse*",
"prettier": "prettier --write \"./**/*.{ts,tsx}\"",
"prettier:check": "prettier --check \"./**/*.{ts,tsx}\"",
"generateAPI": "openapi-typescript langfuse-core/openapi-spec/openapi-server.yaml --output langfuse-core/src/openapi/server.ts && openapi-typescript langfuse-core/openapi-spec/openapi-client.yaml --output langfuse-core/src/openapi/client.ts && yarn prettier",
"test": "jest langfuse-core/* langfuse-node/* langfuse/*",
"test:all": "jest langfuse-core/* langfuse-node/* langfuse/*",
"test:core": "jest langfuse-core/*",
"test:node": "jest langfuse-node/*",
"test:fetch": "jest langfuse/*",
"test:integration": "dotenv -- jest integration-test/*",
"test:datasets": "jest integration-test/langfuse-integration-datasets*",
"test:langchain": "yarn workspace langfuse-langchain run test:integration",
"compile": "rollup -c --bundleConfigAsCjs"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"axios": "^1.4.0",
"babel-jest": "^29.6.2",
"dotenv-cli": "^7.2.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^7.1.5",
"openapi-typescript": "^6.4.5",
"prettier": "^3.0.1",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-dts-bundle": "^1.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,scss}": "prettier --write"
}
}