forked from Echo-Mirror-Butler/echomirror-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 823 Bytes
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
{
"name": "echomirror-sdk",
"private": true,
"description": "EchoMirror SDK monorepo — mood intelligence, Stellar payments, and social wellness for any app",
"workspaces": [
"packages/js/*",
"extensions/vscode"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules"
},
"devDependencies": {
"typescript": "^5.4.0",
"vitest": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}