@getodk/web-forms 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@getodk/web-forms",
3
+ "version": "0.1.0",
4
+ "license": "Apache-2.0",
5
+ "description": "ODK Web Forms",
6
+ "author": "getodk",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/getodk/web-forms",
10
+ "directory": "packages/web-forms"
11
+ },
12
+ "bugs": "https://github.com/getodk/web-forms/issues",
13
+ "homepage": "https://getodk.org/",
14
+ "type": "module",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.js"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "engines": {
26
+ "node": "^18.19.1 || ^20.11.1",
27
+ "yarn": "1.22.19"
28
+ },
29
+ "scripts": {
30
+ "build": "npm-run-all -nl build:*",
31
+ "build:clean": "rimraf dist/",
32
+ "build:js": "vite build",
33
+ "dev": "vite",
34
+ "test": "npm-run-all -nl test:*",
35
+ "test:e2e": "playwright test",
36
+ "test-node:jsdom": "vitest run",
37
+ "test-browser:chromium": "BROWSER_NAME=chromium vitest run",
38
+ "test-browser:firefox": "BROWSER_NAME=firefox vitest run",
39
+ "test-browser:webkit": "BROWSER_NAME=webkit vitest run",
40
+ "test-watch:jsdom": "vitest",
41
+ "test-watch:chromium": "BROWSER_NAME=chromium vitest",
42
+ "test-watch:firefox": "BROWSER_NAME=firefox vitest",
43
+ "test-watch:webkit": "BROWSER_NAME=webkit vitest",
44
+ "test:types": "npm-run-all -nl test:types:*",
45
+ "test:types:app": "vue-tsc --project ./tsconfig.app.json --emitDeclarationOnly false --noEmit",
46
+ "test:types:node": "vue-tsc --project ./tsconfig.node.json --emitDeclarationOnly false --noEmit",
47
+ "test:types:vitest": "vue-tsc --project ./tsconfig.vitest.json --emitDeclarationOnly false --noEmit"
48
+ },
49
+ "dependencies": {
50
+ "@getodk/xforms-engine": "0.1.0",
51
+ "primevue": "^3.49.1",
52
+ "primeflex": "^3.3.1",
53
+ "vue": "^3.4.19",
54
+ "vue-router": "^4.3.0"
55
+ },
56
+ "devDependencies": {
57
+ "@faker-js/faker": "8.4.1",
58
+ "@playwright/test": "^1.42.1",
59
+ "@types/ramda": "0.29.11",
60
+ "@vitejs/plugin-vue": "^5.0.4",
61
+ "@vitejs/plugin-vue-jsx": "^3.1.0",
62
+ "@vue/test-utils": "^2.4.4",
63
+ "jsdom": "^24.0.0",
64
+ "primevue-sass-theme": "https://github.com/primefaces/primevue-sass-theme.git#3.49.1",
65
+ "ramda": "0.29.1",
66
+ "sass": "^1.71.1",
67
+ "vite": "^5.1.5",
68
+ "vitest": "^1.3.1"
69
+ }
70
+ }