-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.71 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
{
"name": "moss-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"description": "Moss open-source workspace: runtime, agent, memory, skills, teaching, and scaffolding packages.",
"workspaces": [
"packages/dmoss",
"packages/dmoss-memory",
"packages/dmoss-skills",
"packages/dmoss-agent",
"packages/dmoss-teaching",
"packages/create-dmoss-app"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run clean && npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test -w @rdk-moss/core && npm run test -w @rdk-moss/memory && npm run test -w @rdk-moss/skills && npm run test -w @rdk-moss/agent && npm run test -w @rdk-moss/teaching && npm run test -w create-dmoss-app",
"lint": "eslint \"packages/*/src/**/*.ts\"",
"lint:fix": "eslint \"packages/*/src/**/*.ts\" --fix",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"format:check": "prettier --check \"packages/*/src/**/*.ts\"",
"check:boundaries": "node scripts/check-oss-boundaries.mjs",
"check:hygiene": "node scripts/check-workspace-hygiene.mjs",
"smoke:moss-cli": "node scripts/smoke-moss-cli.mjs",
"release:rdk-moss": "node scripts/release-rdk-moss.mjs",
"verify": "npm run check:boundaries && npm run check:hygiene && npm run build && npm run typecheck && npm run lint && npm run test"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.16.0"
}
}