-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "@use-file-picker/base",
"private": true,
"description": "Simple react hook to open browser file selector.",
"version": "0.0.1",
"license": "MIT",
"author": "Miłosz Jankiewicz, Kamil Planer",
"homepage": "https://github.com/Jaaneek/useFilePicker",
"repository": {
"url": "https://github.com/Jaaneek/useFilePicker",
"type": "git"
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "turbo type-check"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"endOfLine": "lf"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=12"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.27.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"pkgroll": "^2.12.2",
"prettier": "^3.5.3",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}