-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "@getodk/common",
"private": true,
"version": "0.5.0",
"description": "@getodk/common",
"type": "module",
"author": "getodk",
"repository": {
"type": "git",
"url": "https://github.com/getodk/web-forms",
"directory": "packages/common"
},
"bugs": "https://github.com/getodk/web-forms/issues",
"homepage": "https://getodk.org/",
"exports": {
"./*": {
"types": "./src/*.ts",
"default": "./src/*.ts"
},
"./*.ts": {
"types": "./src/*.ts",
"default": "./src/*.ts"
},
"./types/*": {
"types": "./types/*.ts",
"default": "./types/*.ts"
},
"./types/*.ts": {
"types": "./types/*.ts",
"default": "./types/*.ts"
}
},
"files": [
"src",
"README.md"
],
"engines": {
"node": "^18.20.5 || ^20.18.1 || ^22.12.0",
"yarn": "1.22.22"
},
"scripts": {
"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"
},
"devDependencies": {
"@vitest/browser": "^2.1.8",
"jsdom": "^25.0.1",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}