-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.63 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.63 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
{
"name": "@dumbjs/pick",
"version": "0.0.9",
"description": "Straightforward object picker and walkers",
"repository": "git@github.com:dumbjs/pick.git",
"license": "MIT",
"type": "module",
"author": "Reaper <ahoy@barelyhuman.dev>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./get": {
"types": "./dist/get.d.ts",
"import": "./dist/get.js"
},
"./set": {
"types": "./dist/set.d.ts",
"import": "./dist/set.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/build.js --dev",
"next": "bumpp",
"fix": "prettier --write .",
"test": "tsx --test",
"test:types": "tsc --noEmit false -p .",
"test:ci": "c8 uvu -r tsx --test",
"size": "sizesnap",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^2.0.2",
"bumpp": "^10.3.2",
"c8": "^10.1.3",
"esbuild-multicontext": "^0.15.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"sizesnap": "^0.2.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"uvu": "^0.5.6",
"uvu-inline-snapshot": "^0.0.4"
},
"files": [
"dist/*",
"src/*"
],
"sizesnap": {
"files": [
"dist/*.dts",
"dist/*.ts",
"dist/*.js"
]
},
"lint-staged": {
"*.js": [
"npm run test"
],
"*.{js,css,md,json}": "prettier --write"
}
}