-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.71 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.71 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
{
"name": "@ralorotech/duino-ui",
"version": "0.0.18",
"description": "Sistema de diseño minimalista en React + TypeScript con estilos CSS (BEM), inspirado en la identidad visual de Arduino",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Rafael Lozano",
"repository": {
"type": "git",
"url": "git+https://github.com/RafaelLozano/duino-ui.git"
},
"homepage": "https://github.com/RafaelLozano/duino-ui#readme",
"bugs": {
"url": "https://github.com/RafaelLozano/duino-ui/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js",
"require": "./dist/components/index.cjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "tsup && npm run build:css",
"build:css": "node scripts/build-css.js",
"dev": "tsup --watch",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"test": "vitest --config vitest.config.ts --passWithNoTests",
"prepublishOnly": "npm run build",
"build-storybook": "storybook build",
"type-check": "tsc --noEmit --project tsconfig.build.json",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"keywords": [
"react",
"design-system",
"typescript",
"BEM",
"ui",
"components",
"Arduino",
"duino",
"css",
"frontend",
"library",
"teal",
"minimalist",
"modern"
],
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@storybook/react-vite": "^9.1.4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^9.1.4",
"glob": "^11.0.3",
"jsdom": "^26.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"storybook": "^9.1.4",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}