forked from strands-agents/harness-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"name": "strands",
"version": "0.0.0",
"private": true,
"workspaces": [
"strandly",
"strands-ts"
],
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.8.5"
},
"scripts": {
"dev": "strandly",
"prepare": "husky",
"build": "npm run build -w strands-ts",
"test": "npm run test -w strands-ts",
"test:coverage": "npm run test:coverage -w strands-ts",
"test:all": "npm run test:all -w strands-ts",
"test:all:coverage": "npm run test:all:coverage -w strands-ts",
"test:integ": "npm run test:integ -w strands-ts",
"test:integ:all": "npm run test:integ:all -w strands-ts",
"test:integ:selective": "bash ./test-infra/scripts/run-selective-ts.sh",
"test:browser:install": "npm run test:browser:install -w strands-ts",
"test:package": "npm run test:package -w strands-ts",
"lint": "npm run lint -w strands-ts",
"format": "npm run format -w strands-ts",
"format:check": "npm run format:check -w strands-ts",
"type-check": "npm run type-check -w strands-ts",
"check": "npm run check -w strands-ts",
"check:browser-bundle": "npm run check:browser-bundle -w strands-ts"
}
}