-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 KB
/
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
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
{
"name": "any-install",
"private": true,
"version": "0.0.0-semantically-released",
"license": "Apache-2.0",
"author": {
"name": "OpsBR Software Technology Inc.",
"url": "https://opsbr.com"
},
"repository": {
"type": "git",
"url": "https://github.com/opsbr/any-install.git"
},
"bin": {
"any-install": "dist/npm/cli/main.mjs"
},
"type": "module",
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"ajv": "^8.17.1",
"commander": "^13.1.0",
"tempy": "^3.1.0",
"traverse": "^0.6.11",
"yaml": "^2.7.0"
},
"bundleDependencies": true,
"devDependencies": {
"@eslint/js": "^9.22.0",
"@semantic-release/exec": "^7.0.3",
"@types/bun": "latest",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.10",
"@types/traverse": "^0.6.37",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"generate-license-file": "^3.7.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"prettier-plugin-sh": "^0.15.0",
"semantic-release": "^24.2.3",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"scripts": {
"prepare": "husky",
"any-install": "bun ./src/cli/main.ts",
"generate-json-schema": "bun ./script/generate-json-schema.ts",
"build-assets": "bun ./script/build-assets.ts",
"build-cli": "bun build ./src/cli/main.ts --outfile ./dist/npm/cli/main.mjs --target node --packages external",
"prepack": "bun build-cli",
"build-toolset": "bun ./script/build-toolset.ts",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "DEBUG=eslint:eslint eslint .",
"lint:fix": "DEBUG=eslint:eslint eslint --fix ."
},
"files": [
"./LICENSE",
"./NOTICE",
"./THIRD_PARTY_LICENSES",
"./dist/npm"
],
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
],
"**/*.sh": [
"prettier --write",
"shellcheck"
],
"!(src/**/*.ts|**/*.sh)": "prettier --write --ignore-unknown"
}
}