-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.13 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pathist",
"version": "1.3.0",
"repository": "https://github.com/shaungrady/pathist",
"description": "Parse, manipulate, and compare JS and JSON object property paths",
"type": "module",
"files": [
"dist",
"README.md"
],
"tshy": {
"exports": {
".": "./src/pathist.ts"
}
},
"scripts": {
"prepare": "tshy",
"build": "tshy",
"build:docs": "typedoc && node scripts/add-method-toc.js",
"test": "ava",
"test:watch": "ava --watch",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"ci": "biome ci . && tsc --noEmit && ava",
"changeset": "changeset",
"version-packages": "changeset version && pnpm build:docs",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"pathist",
"object-path",
"jsonpath",
"json-pointer",
"json",
"path",
"path-manipulation",
"path-parsing",
"property-paths",
"wildcard-paths",
"tree-traversal",
"typescript",
"javascript",
"utility"
],
"author": {
"name": "Shaun Grady",
"email": "grady@shaungrady.com",
"url": "https://shaungrady.com"
},
"license": "MIT",
"packageManager": "pnpm@10.23.0",
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.3",
"ava": "^8.0.1",
"fast-check": "^4.8.0",
"lefthook": "^2.1.9",
"remark-toc": "^9.0.0",
"tshy": "^4.1.3",
"tsimp": "^2.0.12",
"tsx": "^4.22.4",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.9.3"
},
"ava": {
"files": [
"test/**/*.test.ts"
],
"extensions": [
"ts"
],
"nodeArguments": [
"--import=tsimp",
"--no-warnings"
],
"environmentVariables": {
"TSIMP_PROJECT": "tsconfig.tsimp.json",
"TSIMP_DIAG": "ignore"
}
},
"exports": {
".": {
"import": {
"types": "./dist/esm/pathist.d.ts",
"default": "./dist/esm/pathist.js"
},
"require": {
"types": "./dist/commonjs/pathist.d.ts",
"default": "./dist/commonjs/pathist.js"
}
}
},
"main": "./dist/commonjs/pathist.js",
"types": "./dist/commonjs/pathist.d.ts",
"module": "./dist/esm/pathist.js"
}