-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.02 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.02 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
75
76
77
78
79
80
81
82
83
{
"name": "@skyleague/node-standards",
"version": "9.0.0",
"description": "Build tools for SkyLeague packages.",
"repository": {
"type": "git",
"url": "git+https://github.com/skyleague/node-standards.git"
},
"license": "MIT",
"author": "SkyLeague Technologies B.V. <technologies@skyleague.io> (https://skyleague.io)",
"type": "module",
"exports": {
".": "./.dist/index.js",
"./package.json": "./package.json",
"./*.cjs": "./*.cjs",
"./.*.cjs": "./.*.cjs",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"bin": {
"node-standards": "bin/run.js"
},
"files": [
"bin",
".dist",
"package.json",
"templates"
],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"check:coverage": "vitest run --coverage=true",
"check:project": "node-standards lint",
"check:types": "tsc -p tsconfig.json",
"lint": "biome check",
"lint:fix": "node --run lint -- --write --unsafe",
"package": "rm -rf .dist && node --run build",
"prepare": "husky || true",
"test": "vitest run"
},
"dependencies": {
"@biomejs/biome": "^2.3.6",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.10",
"conventional-changelog": "^7.1.1",
"find-root": "^1.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"semver": "^7.7.3",
"tsx": "^4.20.6",
"vitest": "^4.0.10",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/find-root": "^1.1.4",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"./",
"examples/*"
],
"node-standards": {
"extends": "yargs-cli",
"rules": {
"files": false
}
}
}