-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "duduk",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "unbuild",
"check": "tsc --noEmit",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' vitest run --coverage",
"test:unit:watch": "vitest",
"test:stryker": "NODE_OPTIONS='--experimental-vm-modules' NODE_ENV=test stryker run",
"pack": "rm -f -R pack && mkdir pack && npm pack --workspaces --pack-destination=pack"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dudukdev/duduk.git"
},
"workspaces": [
"packages/components",
"packages/content-negotiation",
"packages/cookies",
"packages/documentation",
"packages/localization",
"packages/messaging",
"packages/server",
"packages/ssr"
],
"devDependencies": {
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.3",
"unbuild": "^2.0.0",
"vitest": "^2.0.4"
}
}