-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 5 KB
/
package.json
File metadata and controls
174 lines (174 loc) · 5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "skuba",
"version": "14.1.1",
"private": false,
"description": "SEEK development toolkit for backend applications and packages",
"homepage": "https://github.com/seek-oss/skuba#readme",
"bugs": {
"url": "https://github.com/seek-oss/skuba/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/seek-oss/skuba.git"
},
"license": "MIT",
"sideEffects": false,
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"skuba": "lib/skuba.js"
},
"files": [
"config/**/*",
"jest/**/*.js",
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map",
"template/**/*",
"jest-preset.js"
],
"scripts": {
"build": "scripts/build.sh",
"changeset": "changeset",
"deploy": "scripts/deploy.sh",
"format": "pnpm --silent skuba format && pnpm format:packages",
"format:packages": "pnpm --filter '!./template/**' --filter '!.' format",
"lint": "pnpm --silent skuba lint && pnpm --silent lint:md",
"lint:md": "remark --frail --quiet .",
"lint:packages": "pnpm --filter '!./template/**' lint",
"lint-all": "pnpm lint && pnpm lint:packages",
"prepack": "pnpm --filter './template/**' exec rm -rf node_modules",
"release": "pnpm --silent build && changeset publish",
"skuba": "pnpm --silent build && pnpm --silent skuba:exec",
"skuba:exec": "node lib/skuba",
"stage": "changeset version && node ./.changeset/inject.js && pnpm format",
"test": "pnpm --silent skuba test --selectProjects unit",
"test:ci": "pnpm --silent skuba test --runInBand",
"test:int": "pnpm --silent skuba test --selectProjects integration --runInBand",
"test:template": "scripts/test-template.sh",
"test:template:updateSnapshot": "scripts/test-template.sh -u",
"test:watch": "pnpm --silent skuba test --runInBand --watch"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
],
[
"remark-lint-no-shortcut-reference-link",
false
],
[
"remark-lint-no-undefined-references",
{
"allow": [
"!CAUTION",
"!IMPORTANT",
"!NOTE",
"!TIP",
"!WARNING",
" ",
"x"
]
}
]
]
},
"dependencies": {
"@arethetypeswrong/core": "~0.18.1",
"@ast-grep/lang-json": "^0.0.6",
"@ast-grep/napi": "^0.41.0",
"@esbuild-plugins/tsconfig-paths": "^0.1.0",
"@inquirer/prompts": "^7.9.0",
"@jest/types": "^30.0.0",
"@octokit/graphql": "^9.0.0",
"@octokit/graphql-schema": "^15.3.0",
"@octokit/rest": "^22.0.0",
"@octokit/types": "^16.0.0",
"@skuba-lib/api": "workspace:^",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.2",
"concurrently": "^9.0.0",
"ejs": "^4.0.0",
"esbuild": "~0.27.0",
"eslint": "^9.39.1",
"eslint-config-skuba": "workspace:*",
"execa": "^5.0.0",
"fast-glob": "^3.3.2",
"find-up": "^5.0.0",
"fs-extra": "^11.0.0",
"function-arguments": "^1.0.9",
"get-port": "^5.1.1",
"golden-fleece": "^1.0.9",
"ignore": "^7.0.0",
"is-installed-globally": "^0.4.0",
"isomorphic-git": "^1.11.1",
"jest": "^30.0.0",
"jest-watch-typeahead": "^3.0.1",
"lodash.mergewith": "^4.6.2",
"minimist": "^1.2.6",
"normalize-package-data": "^8.0.0",
"npm-registry-fetch": "^19.1.1",
"npm-run-path": "^4.0.1",
"npm-which": "^3.0.1",
"picomatch": "^4.0.0",
"prettier": "~3.8.0",
"prettier-plugin-packagejson": "^3.0.0",
"publint": "~0.3.17",
"read-pkg-up": "^7.0.1",
"semantic-release": "^25.0.2",
"simple-git": "^3.5.0",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.0.0",
"tsconfig-seek": "2.0.0",
"tsdown": "~0.20.3",
"tsx": "^4.21.0",
"typescript": "~5.9.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@changesets/get-github-info": "0.7.0",
"@jest/reporters": "30.2.0",
"@jest/test-result": "30.2.0",
"@types/ejs": "3.1.5",
"@types/express": "5.0.6",
"@types/fs-extra": "11.0.4",
"@types/koa": "3.0.1",
"@types/lodash.mergewith": "4.6.9",
"@types/minimist": "1.2.5",
"@types/module-alias": "2.0.4",
"@types/npm-registry-fetch": "8.0.9",
"@types/npm-which": "3.0.4",
"@types/picomatch": "4.0.2",
"@types/semver": "7.7.1",
"@types/supertest": "6.0.3",
"enhanced-resolve": "5.19.0",
"express": "5.2.1",
"fastify": "5.7.3",
"jest-diff": "30.2.0",
"jsonfile": "6.2.0",
"koa": "3.1.2",
"memfs": "4.56.10",
"remark-cli": "12.0.1",
"remark-preset-lint-recommended": "7.0.1",
"semver": "7.7.4",
"supertest": "7.2.2",
"type-fest": "2.19.0"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=22.14.0"
},
"skuba": {
"build": "esbuild",
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "14.1.2"
}
}