-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.73 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.73 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
{
"name": "@stateless-studio/ui-react",
"version": "1.0.0",
"description": "",
"author": "Stateless Studio",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"dev": "vite build --watch",
"prepare": "npm run build",
"preview": "vite preview",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . --fix && prettier --write .",
"lint:check": "prettier --check . && eslint .",
"test": "npm run lint && npm run build && npm run test:run",
"test:ci": "npm run lint:check && npm run typecheck && npm run test:run",
"test:dev": "vitest --ui --coverage",
"test:run": "vitest run --coverage && npm run test:e2e",
"test:e2e": "playwright test",
"test:dev:e2e": "playwright test --ui"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.8.2"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.43.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"eslint": "^10.1.0",
"fast-glob": "^3.3.3",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.1",
"prettier-plugin-brace-style": "^0.10.1",
"typescript": "^5.9.3",
"vite": "^8.0.9",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2"
},
"keywords": [
"ui",
"react",
"components",
"library",
"stateless-studio",
"design-system",
"ui-kit",
"frontend",
"web",
"typescript",
"css",
"tailwind",
"utility-first",
"responsive",
"accessibility",
"performance",
"open-source",
"modular",
"customizable",
"modern",
"mobile-friendly"
],
"main": "./dist/src/index.cjs",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
"./ui-react.css": "./dist/src/ui-react.css",
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.cjs",
"default": "./dist/src/index.mjs"
},
"./*": {
"types": "./dist/src/*/index.d.ts",
"import": "./dist/src/*/index.mjs",
"require": "./dist/src/*/index.cjs",
"default": "./dist/src/*/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/StatelessStudio/ui-react"
},
"files": [
"dist"
],
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}