-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.71 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
{
"name": "@getodk/xforms-engine",
"version": "0.22.0",
"license": "Apache-2.0",
"description": "XForms engine for ODK Web Forms",
"type": "module",
"author": "getodk",
"repository": {
"type": "git",
"url": "https://github.com/getodk/web-forms",
"directory": "packages/xforms-engine"
},
"bugs": "https://github.com/getodk/web-forms/issues",
"homepage": "https://getodk.org/",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"solid": "./dist/solid.js",
"import": "./dist/index.js",
"browser": "./dist/index.js",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": "^20.19.3 || ^22.12.0 || ^24.13.0",
"npm": "11"
},
"scripts": {
"build": "npm-run-all -nl 'build:*'",
"build:clean": "rimraf dist/",
"build:js": "vite build",
"build:solid": "VITE_BUILD_TARGET=solid vite build",
"dev": "vite",
"docs": "npm-run-all -nl 'docs:*'",
"docs:clean": "rimraf api-docs/",
"docs:api": "typedoc --readme none --out api-docs --entryPoints \"src/**/*\"",
"docs:serve": "http-server api-docs -o modules/client",
"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": "tsc --project ./tsconfig.json --emitDeclarationOnly false --noEmit"
},
"dependencies": {
"bin-packer": "1.7.0",
"mdast-util-from-markdown": "^2.0.2",
"papaparse": "^5.5.3",
"solid-js": "^1.9.11",
"temporal-polyfill": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@getodk/tree-sitter-xpath": "^0.2.2",
"@getodk/xpath": "0.11.0",
"@playwright/test": "^1.58.2",
"@types/papaparse": "^5.5.0",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.2",
"http-server": "^14.1.1",
"jsdom": "^27.2.0",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.3",
"typedoc": "^0.28.17",
"typescript": "~5.9.3",
"vite": "^7.3.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": {
"solid-js": "^1.9.7"
},
"peerDependenciesMeta": {
"solid-js": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}