forked from hongfaqiu/image-to-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 807 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
{
"name": "root",
"private": true,
"npmClient": "pnpm",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build:lib": "pnpm run --dir packages/image-to-audio build",
"build:example": "pnpm run build:lib && pnpm run --dir example build",
"test": "mocha",
"release": "multi-semantic-release --sequential-init --ignore-private-packages=true"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semrel-extra/npm": "^1.2.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"multi-semantic-release": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}