-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"name": "manifest",
"private": true,
"description": "Open-source observability for AI agents — track costs, tokens, messages, and performance",
"homepage": "https://manifest.build",
"repository": {
"type": "git",
"url": "https://github.com/mnfst/manifest"
},
"bugs": {
"url": "https://github.com/mnfst/manifest/issues"
},
"author": "MNFST Inc.",
"license": "MIT",
"keywords": [
"ai-observability",
"ai-agent",
"llm-monitoring",
"opentelemetry",
"otlp",
"cost-tracking",
"token-tracking",
"observability",
"telemetry",
"nestjs",
"solidjs"
],
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/shared",
"packages/frontend",
"packages/backend",
"packages/manifest"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"start": "node packages/backend/dist/main.js",
"check:api-prefix": "node scripts/check-api-prefix.js",
"lint": "eslint packages/shared/src packages/backend/src packages/frontend/src",
"format": "prettier --write 'packages/*/src/**/*.{ts,tsx,css}'",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"lint-staged": {
"packages/*/src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/*/src/**/*.css": [
"prettier --write"
]
},
"overrides": {
"lodash": "^4.18.0",
"defu": "^6.1.5",
"picomatch": "^4.0.4",
"path-to-regexp": "8.4.1",
"brace-expansion": "5.0.5"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"turbo": "^2"
}
}