-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.24 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
{
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@11.1.3",
"author": "Clover You <hi@clovu.me>",
"license": "MIT",
"funding": "https://github.com/sponsors/clovu",
"homepage": "https://github.com/clovu/react-listbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/clovu/react-listbox.git"
},
"bugs": "https://github.com/clovu/react-listbox/issues",
"keywords": [
"listbox",
"react",
"headless",
"primitives"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown && pnpm -C playground build",
"build:lib": "tsdown",
"lint:spell": "cspell lint *",
"dev": "pnpm run build:lib && pnpm run dev:all",
"dev:all": "pnpm run dev:lib & pnpm run dev:playground",
"dev:lib": "tsdown --watch",
"dev:playground": "pnpm -C playground run dev",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm -r publish --access=public",
"start": "pnpm run dev",
"test": "vitest",
"typecheck": "tsc -b",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@cspell/dict-lorem-ipsum": "catalog:",
"@cspell/eslint-plugin": "catalog:",
"@eslint-react/eslint-plugin": "catalog:",
"@testing-library/react": "catalog:",
"@testing-library/user-event": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"cspell": "catalog:",
"eslint": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-react-refresh": "catalog:",
"happy-dom": "catalog:",
"lint-staged": "catalog:",
"publint": "catalog:",
"simple-git-hooks": "catalog:",
"tinyexec": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vitest-package-exports": "catalog:",
"yaml": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}