forked from ricky0123/vad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 867 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
{
"version": "0.0.0",
"license": "ISC",
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"format": "prettier --write '{packages,examples}/**/*.ts'",
"build-test-site": "./test-site/build.sh",
"serve-test-site": "http-server ./test-site/dist",
"dev": "./scripts/dev.sh"
},
"private": true,
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"esbuild": "^0.17.10",
"http-server": "^14.1.1",
"live-server": "^1.2.2",
"nodemon": "^3.0.2",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"workspaces": [
"packages/node",
"packages/web",
"packages/react"
],
"dependencies": {
"typescript": "^5.2.2"
}
}