-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 KB
/
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
34
35
36
37
38
39
{
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"tests/*",
"website",
"crates/compiler"
],
"scripts": {
"changeset": "changeset",
"website": "cd website && pnpm start",
"website:zh": "cd website && pnpm start:zh",
"test": "turbo run test",
"test:source": "turbo run test:source",
"build": "turbo run build",
"build:debug": "turbo run build:debug",
"build:crates": "turbo run build --filter=@xbell/compiler",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "pnpm publish --filter \"./packages/{xbell,create-xbell,assert,code-stack,color,coverage,format,snapshot,reporter,vue2}\" --registry=https://registry.npmjs.org/ --no-git-checks --access=public",
"deploy": "turbo run deploy && gh-pages -d website/build"
},
"devDependencies": {
"xbell": "workspace:*",
"@changesets/cli": "^2.25.2",
"eslint": "^7.32.0",
"gh-pages": "^4.0.0",
"prettier": "^2.5.1",
"turbo": "^1.12.5",
"fast-glob": "^3.2.11",
"typescript": "^5.4.2",
"@types/node": "^20.11.25",
"@swc/core": "1.2.208",
"@napi-rs/cli": "^2.14.7",
"rimraf": "^4.3.1"
}
}