-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/bun": "^1.3.8",
"@types/node": "^22.19.10",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-plugin-compat": "^6.1.0",
"estree-walker": "^3.0.3",
"ignore": "^7.0.5",
"magic-string": "^0.30.21",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.3.0",
"shared": "workspace:*",
"typedoc": "^0.28.16",
"typedoc-github-theme": "^0.3.1",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript-eslint": "^8.55.0"
},
"prettier": {
"plugins": [
"prettier-plugin-jsdoc"
],
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"tsdoc": true
},
"scripts": {
"docs": "typedoc --options typedoc.json",
"dev": "bun scripts/dev.ts --dev",
"build": "bun scripts/build.ts",
"publish": "bun scripts/publish.ts",
"e2e": "bun scripts/e2e.ts",
"lint": "eslint .",
"format": "prettier --write ."
},
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"shared"
],
"catalog": {
"jspsych": "^8.2.2",
"vanjs-core": "^1.6.0",
"vanjs-ext": "^0.6.3"
}
},
"browserslist": [
">0.2%, not IOS<15, Safari>=15, Chrome>=104, ChromeAndroid>=104, Edge>=104, Firefox>=72, FirefoxAndroid>=72, not dead"
]
}