-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "jsonpath-rfc9535",
"version": "1.1.0",
"description": "A JSONPath implementation based on RFC 9535",
"keywords": [
"json",
"jsonpath",
"rfc9535"
],
"homepage": "https://github.com/P0lip/jsonpath-rfc9535",
"bugs": {
"url": "https://github.com/P0lip/jsonpath-rfc9535/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"dist"
],
"type": "module",
"types": "./dist/esm/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json",
"./parser": {
"import": {
"types": "./dist/esm/parser/index.d.ts",
"default": "./dist/esm/parser/index.js"
},
"require": {
"types": "./dist/commonjs/parser/index.d.ts",
"default": "./dist/commonjs/parser/index.js"
}
}
},
"sideEffects": false,
"license": "Apache-2.0",
"author": "P0lip",
"repository": {
"type": "git",
"url": "https://github.com/P0lip/jsonpath-rfc9535"
},
"scripts": {
"build:esm": "tsc --outDir dist/esm && echo '{\"type\":\"module\"}' > dist/esm/package.json",
"build:cjs": "tsc --project tsconfig.cjs.json --outDir dist/commonjs && echo '{\"type\":\"commonjs\"}' > dist/commonjs/package.json",
"build": "npm run build:esm && npm run build:cjs",
"build.parser": "peggy src/parser/grammars/grammar.peggy --output src/parser/parser.js --format es --dts",
"lint": "npx @biomejs/biome check",
"type-check": "tsc --noEmit",
"test": "node --test --experimental-strip-types --experimental-test-coverage --test-reporter=lcov --test-reporter=dot --test-reporter-destination=lcov.info --test-reporter-destination=stdout",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "^9.0.10",
"peggy": "^4.2.0",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]+sha512.8ab88f10f224a0c614cb717a7f7c30499014f77134120e9c1f0211ea3cf3397592cbe483feb38e0c4b3be1c54e347292c76a1b5edb94a3289d5448484ab8ac81"
}