-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
32 lines (32 loc) · 965 Bytes
/
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
{
"name": "@internal/scripts",
"private": true,
"version": "1.0.0",
"description": "Tools and Scripts",
"type": "module",
"bin": {
"update-release-please": "./update-release-please.mjs",
"build-cspell-schema": "./build-cspell-schema.mjs",
"update-package-json": "./update-package-json.mjs",
"remove-zero-width-space": "./remove-zero-width-space.mjs",
"update-contributors": "./update-contributors.mjs"
},
"scripts": {
"#build:ts-json-schema-generator": "pnpm esbuild ../../../code/clones/ts-json-schema-generator/dist/index.js --bundle --outfile=lib/ts-json-schema-generator.cjs --platform=node --external:typescript",
"test": "echo Ok"
},
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0"
},
"devDependencies": {
"esbuild": "^0.25.1"
},
"dependencies": {
"globby": "^14.1.0",
"safe-stable-stringify": "^2.5.0",
"ts-json-schema-generator": "^2.3.0"
}
}