-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 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
75
76
{
"name": "@mixtapelabs/engine",
"version": "0.0.1",
"description": "Mixtape engine – LangGraph-powered workflow engine for AI-driven audio mix analysis.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --minify --out-dir dist",
"dev": "ts-node --esm src/dev.ts",
"test": "vitest run",
"lint": "eslint 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"ci": "npm run lint && npm run typecheck && npm test && npm run build",
"prepare": "npm run build"
},
"keywords": [
"audio",
"mixtapelabs",
"ai",
"langgraph",
"mixing",
"analysis"
],
"author": "",
"license": "UNLICENSED",
"licenseText": "SEE LICENSE FILE",
"private": false,
"repository": "https://github.com/mixtapelabs/engine",
"homepage": "https://github.com/mixtapelabs/engine#readme",
"bugs": {
"url": "https://github.com/mixtapelabs/engine/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"@langchain/core": "^1.0.5",
"@langchain/langgraph": "^1.0.2",
"openai": "^4.57.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitepress": "^1.6.4",
"vitest": "^1.6.0"
}
}