-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 972 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 972 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
{
"name": "strands",
"version": "0.0.0",
"private": true,
"workspaces": ["strands-dev", "strands-ts", "strands-wasm"],
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.7.4"
},
"scripts": {
"dev": "strands-dev",
"prepare": "husky && npm run build",
"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:coverage": "npm run test:all:coverage -w strands-ts",
"test:integ:all": "npm run test:integ:all -w strands-ts",
"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:browser-bundle": "npm run check:browser-bundle -w strands-ts"
}
}