-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.66 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
{
"name": "nested-selects-react",
"version": "2.0.0",
"description": "A react component to manage nested <select> tags",
"author": "carlosEdua",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/carlosEdua/nested-selects-react.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"nested-selects",
"nested",
"select",
"react",
"multiple-select",
"multi-select",
"react-select",
"trigger-options"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint .",
"check:package": "publint && attw --pack .",
"test:react16": "node scripts/smoke-test.mjs",
"prepublishOnly": "pnpm run build && pnpm run check:package",
"predeploy": "pnpm run build && pnpm -C example run build",
"deploy": "gh-pages -d example/dist"
},
"peerDependencies": {
"react": "^16.2.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.39.0",
"eslint": "^9.39.0",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"publint": "^0.3.12",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"vite": "^7.1.0"
}
}