-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 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
{
"name": "@acrool/node-docker-cli",
"version": "3.0.2",
"description": "Pull acrool icon symbols to project cli",
"keywords": [
"typescript",
"acrool",
"svg-symbols"
],
"author": "imagine10255@gmail.com",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/acrool/acrool-node-docker-cli.git"
},
"bin": {
"acrool-node-docker-cli": "dist/bin/cli.js"
},
"files": [
"dist",
"config"
],
"engines": {
"npm": ">=6",
"node": ">=20"
},
"scripts": {
"build": "run-s build:claer && tsc --project ./tsconfig.build.json && run-s copy-dts && run-s chmodBin",
"copy-dts": "copyfiles -u 1 \\\"lib/**/*.d.ts\\\" dist",
"build:claer": "rm -rf ./dist",
"prepublishOnly": "run-s build",
"chmodBin": "chmod +x ./dist/bin/cli.js",
"test": "vitest run",
"pretest": "run-s build",
"lint:fix": "eslint ./src --fix",
"release": "standard-version --release-as",
"release:major": "standard-version -r major",
"release:minor": "standard-version -r minor",
"release:patch": "standard-version -r patch",
"release:alpha": "standard-version --prerelease alpha"
},
"dependencies": {
"@acrool/js-logger": "1.0.27",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "20.17.32",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/ui": "^3.1.3",
"babel-eslint": "^10.0.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.6.0",
"eslint": "^9.19.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nock": "^14.0.4",
"npm-run-all": "^4.1.5",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}