This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.25 KB
/
package.json
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
80
81
82
83
84
{
"name": "pxth",
"version": "0.7.0",
"description": "Tiny utility library for object property path handling",
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"keywords": [
"deep",
"object",
"path",
"utility",
"nested"
],
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
},
{
"path": "dist/index.cjs",
"limit": "10 KB"
}
],
"scripts": {
"build": "tsup",
"start": "pnpm build --watch",
"lint": "eslint . && attw --pack .",
"lint:fix": "eslint . --fix",
"test": "vitest run --typecheck",
"prepare": "pnpm build",
"release": "np",
"size": "size-limit",
"size:why": "size-limit --why"
},
"author": "Artiom Tretjakovas",
"license": "MIT",
"homepage": "https://github.com/ArtiomTr/pxth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ArtiomTr/pxth.git"
},
"bugs": {
"url": "https://github.com/ArtiomTr/pxth/issues"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@microsoft/api-extractor": "^7.47.11",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/lodash": "^4.17.12",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"np": "^10.0.7",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"lodash": "^4.17.21",
"tiny-invariant": "^1.3.3"
}
}