-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.78 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
{
"name": "output",
"version": "0.0.0",
"description": "The core project that contains the SDK npm modules and the API for the output.ai framework",
"type": "module",
"scripts": {
"prepare": "command -v git > /dev/null && husky || true",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.js",
"test:e2e": "./ops/test_e2e.sh",
"test:all": "npm test && npm run test:integration npm run test:e2e",
"build:packages": "pnpm -r run build && cp ./api/openapi.json ./docs/guides/openapi.json",
"build:api:dev": "docker build -f ops/api.Dockerfile -t outputai/api:dev .",
"dev": "npm run build:packages && npm run build:api:dev && npm run dev:up",
"dev:up": "OUTPUT_API_VERSION=dev OUTPUT_WORKFLOWS_DIR=test_workflows npx --prefix=sdk/cli output dev --image-pull-policy missing",
"docs:generate": "typedoc",
"docs:validate": "typedoc --emit none"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "24.10.15",
"eslint": "10.2.1",
"eslint-plugin-check-file": "3.3.1",
"globals": "17.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mintlify": "4.2.536",
"native-copyfiles": "2.0.1",
"semver": "catalog:",
"supertest": "7.2.2",
"typedoc": "0.28.19",
"typescript": "5.9.3",
"typescript-eslint": "8.59.1",
"vite": "7.3.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.5"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/growthxai/output-sdk"
},
"private": true,
"packageManager": "pnpm@10.30.2",
"lint-staged": {
"*": [
"./ops/format_files.sh"
]
}
}