-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.17 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.17 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "srcube-ui",
"version": "0.0.0",
"private": true,
"description": "A UI library",
"keywords": [
"UI",
"React UI",
"MiniProgram UI"
],
"author": "chioio <srcube.chioio@gmail.com>",
"repository": "https://github.com/srcube/srcube-ui",
"license": "MIT",
"engines": {
"pnpm": ">=10 <11"
},
"type": "module",
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "turbo run dev",
"dev:react": "turbo run dev --filter=...sample-react",
"dev:weapp": "turbo run dev --filter=...sample-weapp",
"dev:pkg": "turbo run dev --filter=\"./packages/**\"",
"build": "turbo run build",
"build:react": "turbo run build --filter=...sample-react",
"build:weapp": "turbo run build --filter=...sample-weapp",
"build:pkg": "turbo run build --filter=\"./packages/**\"",
"dev:storybook": "pnpm -C packages/_storybook dev",
"build:storybook": "pnpm -C packages/_storybook build",
"preview:react": "pnpm -C apps/sample-react preview",
"deploy:react": "pnpm -C apps/sample-react deploy",
"open:weapp": "pnpm -C apps/sample-weapp open",
"upload:weapp": "pnpm -C apps/sample-weapp upload",
"test": "vitest run --project unit \"packages/**\"",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish",
"clean": "turbo run clean && rm -rf node_modules **/*/node_modules",
"reinstall": "pnpm clean && pnpm install"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/cli": "catalog:",
"@testing-library/dom": "catalog:",
"@testing-library/react": "catalog:",
"@tsdown/css": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitest/browser-preview": "catalog:",
"jsdom": "catalog:",
"miniprogram-api-typings": "catalog:",
"miniprogram-simulate": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"tsdown": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vitest-browser-react": "catalog:"
}
}