-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typescript-project-basic-template",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "andreww2012",
"type": "module",
"main": "index.js",
"scripts": {
"u": "ncu",
"u:m": "ncu -t minor",
"u:pm": "ncu --dep packageManager",
"u:actions": "actions-up",
"deps:audit": "pnpm audit --audit-level high",
"deps:audit:fix": "nr deps:audit --fix override",
"deps:audit:fix:update": "nr deps:audit --fix update",
"deps:dedupe:check": "pnpm dedupe --check",
"deps:peers:check": "pnpm peers check",
"spellcheck": "cspell --no-progress --no-summary .",
"format:check": "prettier --check . --log-level warn",
"format": "prettier --write . --log-level warn",
"eslint:inspect": "eslint-config-inspector --open false",
"lint:eslint": "eslint --cache",
"lint:ts": "tsc --noEmit",
"lint:ts6": "tsc6 --noEmit",
"knip:main": "knip --no-progress",
"knip:cycles": "knip --no-progress --cycles --reporter cycles",
"knip": "nr '/^knip:.+$/'",
"check": "nr '/^(knip|spellcheck|lint:ts|format:check|lint:eslint)$/'",
"check:deps": "nr '/^deps:(peers:check|audit)$/'",
"check:deps:strict": "nr '/^deps:.+$/'",
"check:fix": "nr format && nr lint:eslint --fix && nr format",
"t": "vitest",
"t:ui": "vitest --ui",
"t:cov": "vitest --coverage",
"test:vitest": "nr t run",
"test:vitest:cov": "nr t:cov run",
"test": "nr check:deps && nr check && nr test:vitest"
},
"dependencies": {
"@andreww2012/unutils": "0.1.0"
},
"devDependencies": {
"@antfu/ni": "30.3.0",
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@commitlint/types": "21.2.0",
"@eslint/config-inspector": "3.1.0",
"@types/node": "22.20.1",
"actions-up": "1.16.0",
"cross-env": "10.1.0",
"cspell": "10.0.1",
"eslint": "10.8.0",
"eslint-config-un": "1.0.0-beta.15",
"eslint-plugin-sentences-per-line": "0.1.3",
"knip": "6.29.0",
"lefthook": "2.1.10",
"npm-check-updates": "23.0.0",
"prettier": "3.9.6",
"semver": "7.8.5",
"tsx": "4.23.1",
"typescript": "npm:@typescript/typescript6@6.0.2",
"typescript7": "npm:typescript@7.0.2"
},
"engines": {
"node": "^22.23.1 || >=24"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.17.0"
}
}
}