-
Notifications
You must be signed in to change notification settings - Fork 857
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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",
"strands-wasm"
],
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.7.4"
},
"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: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"
}
}