-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.39 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
{
"name": "@getodk/tree-sitter-xpath",
"version": "0.2.2",
"license": "Apache-2.0",
"description": "XPath grammar for tree-sitter",
"type": "commonjs",
"author": "getodk",
"repository": {
"type": "git",
"url": "https://github.com/getodk/tree-sitter-xpath"
},
"bugs": "https://github.com/getodk/tree-sitter-xpath/issues",
"homepage": "https://getodk.org/",
"files": [
"README.md",
"dist/grammar.js",
"dist/tree-sitter-xpath-parser.d.ts",
"dist/tree-sitter-xpath.wasm",
"index.d.ts"
],
"engines": {
"node": "^20.19.3 || ^22.12.0 || ^24.11.0",
"yarn": "4.11.0"
},
"volta": {
"node": "24.11.0",
"yarn": "4.11.0"
},
"scripts": {
"build": "npm-run-all -nl 'build:*'",
"build:pre": "node ./scripts/build/pre.mjs",
"build:js": "vite build",
"build:tree-sitter": "cd dist && tree-sitter generate && tree-sitter build --wasm",
"build:parser-types": "node ./scripts/build/parser-types.mjs",
"format": "npm-run-all --print-name format:prettier",
"format:prettier": "prettier -w \"**/*\" --ignore-unknown --cache",
"format:checkonly": "prettier -c \"**/*\" --ignore-unknown",
"lint": "eslint . --report-unused-disable-directives --cache",
"test": "npm-run-all -nl 'test:*'",
"test:types": "tsc --project ./tsconfig.json",
"test:grammar": "tree-sitter test --wasm"
},
"dependenciesMeta": {
"tree-sitter": {
"built": true
},
"tree-sitter-cli": {
"built": true
}
},
"devDependencies": {
"@asgerf/dts-tree-sitter": "0.21.0",
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.5.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"tree-sitter": "0.22.1",
"tree-sitter-cli": "0.24.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.1",
"vite-plugin-static-copy": "^3.2.0",
"web-tree-sitter": "0.24.5"
},
"resolutions": {
"tree-sitter": "0.22.1",
"@asgerf/dts-tree-sitter/tree-sitter": "0.22.1"
},
"peerDependencies": {
"web-tree-sitter": "0.24.5"
},
"publishConfig": {
"access": "public"
}
}