super-select-react 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "super-select-react",
3
+ "private": false,
4
+ "version": "0.9.0",
5
+ "description": "An enhanced drop-in replacement for native select with a consistent experience across devices.",
6
+ "license": "MIT OR Unlicense",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/22222/super-select-react.git"
10
+ },
11
+ "homepage": "https://22222.github.io/super-select-react/",
12
+ "bugs": {
13
+ "url": "https://github.com/22222/super-select-react/issues"
14
+ },
15
+ "keywords": [
16
+ "react",
17
+ "select",
18
+ "dropdown",
19
+ "modal",
20
+ "form",
21
+ "input",
22
+ "typescript"
23
+ ],
24
+ "type": "module",
25
+ "main": "./dist/super-select-react.cjs",
26
+ "module": "./dist/super-select-react.js",
27
+ "types": "./dist/super-select-react.d.ts",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/super-select-react.d.ts",
31
+ "import": "./dist/super-select-react.js",
32
+ "require": "./dist/super-select-react.cjs"
33
+ },
34
+ "./style.css": "./dist/super-select-react.css"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "CHANGELOG.md",
39
+ "LICENSE",
40
+ "README.md",
41
+ "UNLICENSE"
42
+ ],
43
+ "sideEffects": [
44
+ "**/*.css"
45
+ ],
46
+ "peerDependencies": {
47
+ "react": "^19.0.0",
48
+ "react-dom": "^19.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "@eslint/js": "^10.0.1",
52
+ "@microsoft/api-extractor": "^7.58.9",
53
+ "@playwright/test": "^1.61.1",
54
+ "@types/node": "^26.1.0",
55
+ "@types/react": "^19.2.17",
56
+ "@types/react-dom": "^19.2.3",
57
+ "@vitejs/plugin-react": "^6.0.3",
58
+ "@vitest/eslint-plugin": "^1.6.20",
59
+ "eslint": "^10.6.0",
60
+ "eslint-plugin-playwright": "^2.10.4",
61
+ "eslint-plugin-react-hooks": "^7.1.1",
62
+ "eslint-plugin-react-refresh": "^0.5.3",
63
+ "eslint-plugin-simple-import-sort": "^13.0.0",
64
+ "globals": "^17.7.0",
65
+ "prettier": "^3.9.4",
66
+ "react": "^19.2.7",
67
+ "react-dom": "^19.2.7",
68
+ "typescript": "^6.0.3",
69
+ "typescript-eslint": "^8.62.1",
70
+ "vite": "^8.1.2",
71
+ "vite-plugin-dts": "^5.0.3",
72
+ "vitest": "^4.1.9"
73
+ },
74
+ "scripts": {
75
+ "start": "npm --prefix website run start",
76
+ "test": "npm run test:unit && npm run test:e2e",
77
+ "test:unit": "vitest run",
78
+ "test:e2e": "playwright test",
79
+ "test:visual": "playwright test --config playwright.visual.config.ts",
80
+ "test:visual:update": "playwright test --config playwright.visual.config.ts --update-snapshots",
81
+ "lint": "npm run lint:es && npm --prefix website run lint && npm run lint:prettier && npm run lint:line-endings",
82
+ "lint:es": "eslint src tests playwright.config.ts playwright.visual.config.ts vite.config.ts vitest.config.ts eslint.config.js",
83
+ "lint:fix": "npm run lint:es -- --fix && npm --prefix website run lint -- --fix && npm run prettier",
84
+ "lint:line-endings": "node scripts/check-line-endings.mjs",
85
+ "lint:prettier": "prettier --check .",
86
+ "build": "npm run build:vite && npm run build:tsc && npm run build:verify && npm run build:docs",
87
+ "build:vite": "vite build --configLoader runner",
88
+ "build:tsc": "tsc --project tsconfig.json --noEmit",
89
+ "build:verify": "node scripts/verify-build.mjs",
90
+ "build:docs": "npm --prefix website run build",
91
+ "prettier": "prettier --write .",
92
+ "setup": "npm run setup:npm && npm run setup:e2e",
93
+ "setup:npm": "npm install && npm --prefix website install",
94
+ "setup:e2e": "playwright install chromium",
95
+ "version": "node scripts/version.mjs",
96
+ "release": "npm run release:build && npm run release:publish",
97
+ "release:build": "npm run build:vite && npm run build:tsc && npm run build:verify",
98
+ "release:publish": "node scripts/publish.mjs"
99
+ }
100
+ }