-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 930 Bytes
/
package.json
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": "synthlet-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@types/audioworklet": "^0.0.60",
"@types/jest": "^29.5.12",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"tsup": "^8.3.0",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "turbo build",
"lint": "turbo lint",
"api": "python scripts/export-api.py",
"test": "jest --coverage",
"test:ci": "npm run api && npm run build && npm run test",
"processors": "find ./packages -name 'processor.ts' -exec wc -m {} +",
"bump": "changeset version && npm run publish:prepare",
"publish:prepare": "cp README.md packages/synthlet && cp packages/synthlet/CHANGELOG.md CHANGELOG.md"
},
"packageManager": "[email protected]"
}