-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "@skyleague/jsonpath",
"version": "1.0.0",
"description": "",
"homepage": "https://skyleague.github.io/jsonpath/",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/jsonpath.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": "./.dist/index.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"files": [".dist", "package.json"],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"build:docs": "npm run --prefix=docs build",
"check:coverage": "vitest run --coverage=true",
"check:project": "node-standards lint",
"check:types": "tsc -p tsconfig.json",
"lint": "biome check",
"lint:fix": "node --run lint -- --write --unsafe",
"package": "rm -rf .dist && node --run build",
"prepare": "husky || true",
"test": "vitest run"
},
"dependencies": {
"jsonpath-plus": "^10.3.0"
},
"devDependencies": {
"@skyleague/axioms": "^6.5.1",
"@skyleague/node-standards": "^10.0.1",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"node-standards": {
"extends": ["library", "docusaurus"]
},
"workspaces": ["docs"]
}