-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.44 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.44 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
{
"name": "@getodk/xpath",
"version": "0.10.4",
"license": "Apache-2.0",
"description": "XPath implementation for ODK Web Forms",
"type": "module",
"author": "getodk",
"repository": {
"type": "git",
"url": "https://github.com/getodk/web-forms",
"directory": "packages/xpath"
},
"bugs": "https://github.com/getodk/web-forms/issues",
"homepage": "https://getodk.org/",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./expressionParser.js": {
"types": "./dist/expressionParser.d.ts",
"default": "./dist/expressionParser.js"
},
"./static/grammar/*.js": {
"types": "./dist/static/grammar/*.d.ts",
"default": "./dist/static/grammar/*.js"
}
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": "^20.19.3 || ^22.12.0 || ^24.11.0",
"yarn": "4.11.0"
},
"scripts": {
"build": "npm-run-all -nl 'build:*'",
"build:clean": "rimraf dist/",
"build:js": "vite build",
"dev": "vite",
"test": "npm-run-all -nl 'test-node:*' 'test-browser:*'",
"test-node:jsdom": "vitest run",
"test-browser:chromium": "BROWSER_NAME=chromium vitest run",
"test-browser:firefox": "BROWSER_NAME=firefox vitest run",
"test-browser:webkit": "BROWSER_NAME=webkit vitest run",
"test-watch:jsdom": "vitest",
"test-watch:chromium": "BROWSER_NAME=chromium vitest",
"test-watch:firefox": "BROWSER_NAME=firefox vitest",
"test-watch:webkit": "BROWSER_NAME=webkit vitest",
"test:types": "npm-run-all -nl 'test:types:*'",
"test:types:main": "tsc --project ./tsconfig.json --emitDeclarationOnly false --noEmit",
"test:types:test": "tsc --project ./test/tsconfig.json --emitDeclarationOnly false --noEmit"
},
"dependencies": {
"@getodk/common": "0.14.0",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@getodk/tree-sitter-xpath": "0.2.2",
"@playwright/test": "^1.58.2",
"@types/crypto-js": "^4.2.2",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.2",
"jsdom": "^27.2.0",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.3",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-babel": "^1.5.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^4.0.18",
"web-tree-sitter": "0.24.5"
},
"peerDependencies": {
"temporal-polyfill": "^0.3.0"
},
"publishConfig": {
"access": "public"
}
}