-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "device-router",
"version": "1.0.1",
"private": true,
"type": "module",
"license": "MIT",
"description": "Detect device capabilities server-side and enable tailored responses",
"repository": {
"type": "git",
"url": "https://github.com/SimplyLiz/DeviceRouter.git"
},
"homepage": "https://github.com/SimplyLiz/DeviceRouter#readme",
"bugs": {
"url": "https://github.com/SimplyLiz/DeviceRouter/issues"
},
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:publint": "pnpm -r --filter './packages/*' exec publint",
"lint:attw": "pnpm -r --filter './packages/*' exec attw --pack --entrypoints . --ignore-rules cjs-resolves-to-esm",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "pnpm build && bash e2e/run.sh",
"clean": "pnpm -r run clean"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"minimatch@<10.2.1": "^10.2.1"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"publint": "^0.3.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}