-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.38 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@krudi/shared-styles",
"version": "0.1.0",
"private": true,
"description": "Shared CSS foundations, utilities, and components extracted for reuse across personal projects. Includes design tokens, reset styles, layout primitives, and early components/utilities.",
"keywords": [
"css",
"styles",
"design-system",
"utilities",
"components",
"variables",
"layout"
],
"homepage": "https://github.com/krudi/shared-styles#readme",
"bugs": {
"url": "https://github.com/krudi/shared-styles/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krudi/shared-styles.git"
},
"license": "MIT",
"author": {
"name": "krudi",
"email": "patryk.kudlik@gmail.com",
"url": "https://krudi.io"
},
"type": "module",
"workspaces": [
"addons/*",
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo clean && rm -rf .turbo node_modules",
"dev": "turbo run dev --parallel",
"lint:eslint": "turbo run lint:eslint",
"lint:eslint:fix": "turbo run lint:eslint:fix",
"lint:prettier": "turbo run lint:prettier",
"lint:prettier:fix": "turbo run lint:prettier:fix",
"lint:stylelint": "turbo run lint:stylelint",
"lint:stylelint:fix": "turbo run lint:stylelint:fix",
"test:storybook": "turbo run test:storybook",
"test:storybook:coverage": "turbo run test:storybook:coverage",
"typecheck": "turbo run typecheck"
},
"overrides": {
"@krudi/eslint-config": "^0.1.8",
"@krudi/prettier-config": "^0.1.8",
"@krudi/stylelint-config": "^0.1.1",
"@storybook/addon-docs": "^10.3.5",
"@types/node": "^25.5.2",
"eslint-plugin-storybook": "^10.3.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"storybook": "^10.3.5",
"typescript": "^6.0.2",
"vite": "^8.0.4"
},
"devDependencies": {
"@krudi/eslint-config": "^0.1.8",
"@krudi/prettier-config": "^0.1.8",
"@krudi/typescript-config": "^0.1.9",
"turbo": "^2.9.4"
},
"packageManager": "npm@11.12.1",
"engines": {
"node": ">= 24.14.0",
"npm": ">= 11.6.4"
}
}