-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 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
66
67
68
69
70
{
"name": "ginga-ui",
"version": "1.0.0",
"private": true,
"description": "brand-new UI component library for web",
"keywords": [
"component",
"library",
"react",
"ui"
],
"homepage": "https://github.com/newt239/ginga-ui#readme",
"bugs": {
"url": "https://github.com/newt239/ginga-ui/issues"
},
"author": {
"name": "newt239",
"email": "ysti2019.win2020.st@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newt239/ginga-ui.git"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"setup": "corepack enable pnpm",
"preinstall": "npx only-allow pnpm",
"changeset-version": "changeset version",
"changeset-publish": "changeset publish",
"clean": "find . -type d \\( -name 'node_modules' -o -name '.turbo' -o -name 'dist' -o -name 'pnpm-lock.yaml' \\) -prune -exec rm -rf {} +",
"dev": "turbo run dev --filter=./packages/**",
"build": "turbo run build --filter=./packages/**",
"build:fast": "turbo run build:fast --filter=./packages/**",
"lint": "oxlint --type-aware --fix",
"format": "oxfmt .",
"stylelint": "stylelint \"./**/*.css\" --fix",
"docs": "pnpm --prefix app/ginga-ui.com dev",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@storybook/addon-links": "10.2.16",
"@storybook/react": "10.2.16",
"@storybook/react-vite": "10.2.16",
"@types/chroma-js": "3.1.2",
"@types/css-modules": "1.0.5",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"chromatic": "15.2.0",
"oxfmt": "0.36.0",
"oxlint": "1.51.0",
"oxlint-tsgolint": "0.16.0",
"react": "19.2.4",
"react-aria-components": "1.16.0",
"storybook": "10.2.16",
"stylelint": "17.4.0",
"stylelint-config-recess-order": "7.6.1",
"stylelint-config-standard": "40.0.0",
"tsup": "8.5.1",
"turbo": "2.8.14",
"typescript": "5.9.3",
"vite": "7.3.1"
},
"packageManager": "pnpm@10.11.0"
}