-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
198 lines (198 loc) · 6.81 KB
/
Copy pathpackage.json
File metadata and controls
198 lines (198 loc) · 6.81 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "paalstack-react-ui",
"version": "1.0.0",
"description": "An open-source collection of React components, icons, and hooks for building modern web applications — powered by Tailwind CSS v4, TypeScript, and Base UI.",
"type": "module",
"scripts": {
"dev": "pnpm storybook",
"start": "pnpm dev",
"build": "pnpm -r run tsup",
"build:config": "pnpm --filter @paalstack/react-config run tsup",
"build:shared": "pnpm --filter @paalstack/react-shared run tsup",
"build:providers": "pnpm --filter @paalstack/react-providers run tsup",
"build:test-utils": "pnpm --filter @paalstack/react-test-utils run tsup",
"build:layouts": "pnpm --filter @paalstack/react-layouts run tsup",
"build:hooks": "pnpm --filter @paalstack/react-hooks run tsup",
"build:icons": "pnpm --filter @paalstack/react-icons run tsup",
"build:components": "pnpm --filter @paalstack/react-components run tsup",
"build:ui": "pnpm --filter @paalstack/react-ui run tsup",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"type-check": "pnpm -r run type-check",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx}\" --cache",
"tsup": "pnpm -r run tsup",
"tsup:watch": "pnpm -r run tsup:watch",
"test": "pnpm -r run test",
"test:coverage": "jest --coverage",
"test:watch": "pnpm test -- --watch",
"storybook": "storybook dev -p 6006",
"storybook:docs": "storybook dev -p 6007 --docs",
"storybook:build": "cross-env NODE_OPTIONS=\"--max-old-space-size=8096\" storybook build",
"storybook:build:docs": "pnpm storybook:build -- --docs",
"storybook:test": "test-storybook",
"storybook:test:watch": "pnpm storybook:test -- --watch",
"setup": "pnpm install && pnpm build",
"docs:extract": "node ./scripts/generate-ai-knowledge-base.mjs",
"docs:generate": "node ./scripts/write-ai-knowledge-base.mjs",
"docs:build": "pnpm docs:extract && pnpm docs:generate",
"prepare": "pnpm build:config",
"validate:package-exports": "node ./scripts/validate-package-exports.js",
"preview": "pnpm storybook:build && serve storybook-static",
"preview:docs": "pnpm storybook:build:docs && serve storybook-static",
"commit": "cz",
"validate": "pnpm build && pnpm storybook:build && pnpm test",
"changeset": "changeset",
"next:enter": "changeset pre enter next",
"next:exit": "changeset pre exit next",
"version": "changeset version",
"release": "changeset publish",
"version:dev": "pnpm version -- --snapshot dev",
"release:dev": "pnpm release -- --tag dev"
},
"dependencies": {
"@paalstack/react-config": "workspace:*",
"@paalstack/react-hooks": "workspace:*",
"@paalstack/react-icons": "workspace:*",
"@paalstack/react-test-utils": "workspace:*",
"@paalstack/react-ui": "workspace:*"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.15",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@changesets/get-release-plan": "^4.0.3",
"@changesets/types": "^6.0.0",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/cz-commitlint": "^17.6.7",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@isaacs/cliui": "^8.0.2",
"@storybook/addon-a11y": "^7.6.12",
"@storybook/addon-coverage": "^0.0.9",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-storysource": "^7.6.12",
"@storybook/addon-themes": "^7.6.12",
"@storybook/blocks": "^7.6.12",
"@storybook/jest": "^0.2.3",
"@storybook/manager-api": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/react-vite": "^7.6.12",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.12",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^16.3.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^29.5.4",
"@types/jest-axe": "^3.5.7",
"@types/lodash-es": "^4.17.9",
"@types/node": "^20.6.0",
"@types/prettier": "^2.7.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"fs-extra": "^11.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.9.1",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.5",
"serve": "^14.2.1",
"storybook": "^7.6.12",
"storybook-addon-react-router-v6": "^2.0.9",
"storybook-addon-tw-dm-toggle": "^7.0.19",
"tailwindcss": "^4.2.2",
"ts-jest": "^29.1.1",
"ts-jest-mock-import-meta": "^1.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.3.3",
"vite-plugin-environment": "^1.1.3",
"vite-tsconfig-paths": "^4.2.1"
},
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"author": {
"name": "Paalamugan",
"email": "paalamugan@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paalamugan/paalstack-react-ui.git"
},
"bugs": {
"url": "https://github.com/paalamugan/paalstack-react-ui/issues"
},
"homepage": "https://github.com/paalamugan/paalstack-react-ui#readme",
"files": [
"dist",
"tsconfig.json"
],
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"keywords": [
"react",
"typescript",
"tailwindcss",
"tailwind-css-v4",
"component-library",
"ui-components",
"design-system",
"react-components",
"storybook",
"monorepo",
"pnpm",
"tsup",
"vite",
"hooks",
"icons",
"layouts",
"test-utils",
"accessibility",
"dark-mode",
"base-ui",
"open-source",
"ui-kit",
"frontend"
],
"license": "MIT",
"publishConfig": {
"access": "public"
}
}