-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/getodk/web-forms"
},
"type": "module",
"version": "0.1.0",
"engines": {
"node": "^18.20.4 || ^20.17.0 || ^22.9.0",
"yarn": "1.22.22"
},
"volta": {
"node": "22.9.0",
"yarn": "1.22.22"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"preinstall": "npx only-allow yarn",
"test": "turbo run test",
"build": "turbo run build",
"types": "turbo run types",
"bump": "changeset add",
"format": "npm-run-all --print-name format:vue format:prettier",
"format:prettier": "prettier -w \"**/*\" --ignore-unknown --cache",
"format:vue": "eslint ./**/*.vue --report-unused-disable-directives --fix",
"format:readme-only": "prettier -w README.md",
"format:checkonly": "prettier -c \"**/*\" --ignore-unknown",
"lint": "eslint . --report-unused-disable-directives",
"feature-matrix": "node scripts/feature-matrix/render.js"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@eslint/js": "^9.11.1",
"@tsconfig/node20": "^20.1.4",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.2",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.28.0",
"nan": "2.20.0",
"node-gyp": "10.2.0",
"npm-run-all2": "^6.2.3",
"only-allow": "^1.2.1",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.9",
"turbo": "^2.1.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.7.0",
"vue": "3.3.4",
"vue-tsc": "^2.0.19"
},
"resolutions": {
"**/tree-sitter": "0.21.1"
}
}