-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@getodk/xforms-engine",
"version": "0.5.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": "^18.20.4 || ^20.17.0 || ^22.9.0",
"yarn": "1.22.22"
},
"scripts": {
"build": "npm-run-all -nl build:*",
"build:clean": "rimraf dist/",
"build:js": "vite build",
"build:solid": "export 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 --print-name --print-label 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": {
"papaparse": "^5.4.1",
"solid-js": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@getodk/tree-sitter-xpath": "0.1.2",
"@getodk/xpath": "0.3.0",
"@playwright/test": "^1.47.2",
"@types/papaparse": "^5.3.15",
"@vitest/browser": "^2.1.1",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.0",
"http-server": "^14.1.1",
"jsdom": "^25.0.1",
"typedoc": "^0.26.7",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"solid-js": "^1.8.18"
},
"peerDependenciesMeta": {
"solid-js": {
"optional": true
}
}
}