@share-crm/sharedev-cli 0.0.4-rc.2 → 0.0.4-rc.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@share-crm/sharedev-cli",
3
- "version": "0.0.4-rc.2",
3
+ "version": "0.0.4-rc.21",
4
4
  "private": false,
5
5
  "description": "sharedev command line tool",
6
6
  "type": "module",
@@ -18,11 +18,16 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "build": "tsc --noEmit && webpack --config build/webpack/webpack.prod.cjs",
21
- "build:bin": "bun build --compile --target=bun-linux-x64 src/cli.ts --outfile dist/sharedev-linux-x64 && bun build --compile --target=bun-linux-arm64 src/cli.ts --outfile dist/sharedev-linux-arm64 && bun build --compile --target=bun-darwin-x64 src/cli.ts --outfile dist/sharedev-darwin-x64 && bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile dist/sharedev-darwin-arm64 && bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/sharedev-windows-x64.exe",
21
+ "build:debug": "tsc --noEmit && webpack --config build/webpack/webpack.debug.cjs",
22
+ "build:bin": "bun build --compile --target=bun-darwin-x64 src/cli.ts --outfile scripts/sharedev-darwin-x64 && bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile scripts/sharedev-darwin-arm64 && bun build --compile --target=bun-windows-x64 src/cli.ts --outfile scripts/sharedev-windows-x64.exe",
23
+ "build:all": "npm run build && npm run build:bin",
22
24
  "dev": "tsc --noEmit --watch & webpack --config build/webpack/webpack.dev.cjs --watch",
23
25
  "dev2": "node src/cli.ts",
24
26
  "typecheck": "tsc --noEmit",
25
- "prettier": "prettier --write ./src/**/*.ts"
27
+ "prettier": "prettier --write ./src/**/*.ts",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:coverage": "vitest run --coverage"
26
31
  },
27
32
  "dependencies": {
28
33
  "@clack/prompts": "^1.1.0",
@@ -30,17 +35,21 @@
30
35
  "axios": "~1.13.0",
31
36
  "chalk": "^5.6.2",
32
37
  "commander": "^14.0.1",
33
- "fast-xml-parser": "^5.2.5",
34
38
  "extract-zip": "^2.0.1",
39
+ "fast-xml-parser": "^5.2.5",
35
40
  "fs-extra": "^11.3.2",
41
+ "lodash-es": "^4.18.1",
36
42
  "ora": "^9.3.0"
37
43
  },
38
44
  "devDependencies": {
39
45
  "@types/extract-zip": "^2.0.3",
40
46
  "@types/fs-extra": "^11.0.4",
47
+ "@types/lodash-es": "^4.17.12",
41
48
  "@types/node": "^24.3.0",
49
+ "@vitest/coverage-v8": "^4.1.8",
42
50
  "ts-loader": "^9.5.4",
43
51
  "typescript": "^5.9.2",
52
+ "vitest": "^3.2.6",
44
53
  "webpack": "^5.101.3",
45
54
  "webpack-cli": "^6.0.1",
46
55
  "webpack-merge": "^6.0.1"
@@ -1,49 +0,0 @@
1
- {
2
- "name": "@share-crm/sharedev-cli",
3
- "version": "0.0.3",
4
- "private": false,
5
- "description": "sharedev command line tool",
6
- "type": "module",
7
- "main": "dist/sharedev.js",
8
- "bin": {
9
- "sharedev": "./bin/cli.mjs"
10
- },
11
- "author": {
12
- "name": "sharecrm-npm"
13
- },
14
- "files": [
15
- "dist",
16
- "bin",
17
- "README.md"
18
- ],
19
- "scripts": {
20
- "build": "tsc --noEmit && webpack --config build/webpack/webpack.prod.cjs",
21
- "build:bin": "bun build --compile --target=bun-linux-x64 src/cli.ts --outfile dist/sharedev-linux-x64 && bun build --compile --target=bun-linux-arm64 src/cli.ts --outfile dist/sharedev-linux-arm64 && bun build --compile --target=bun-darwin-x64 src/cli.ts --outfile dist/sharedev-darwin-x64 && bun build --compile --target=bun-darwin-arm64 src/cli.ts --outfile dist/sharedev-darwin-arm64 && bun build --compile --target=bun-windows-x64 src/cli.ts --outfile dist/sharedev-windows-x64.exe",
22
- "dev": "tsc --noEmit --watch & webpack --config build/webpack/webpack.dev.cjs --watch",
23
- "dev2": "node src/cli.ts",
24
- "typecheck": "tsc --noEmit",
25
- "prettier": "prettier --write ./src/**/*.ts"
26
- },
27
- "dependencies": {
28
- "@clack/prompts": "^1.1.0",
29
- "@mariozechner/pi-coding-agent": "^0.62.0",
30
- "axios": "~1.13.0",
31
- "chalk": "^5.6.2",
32
- "commander": "^14.0.1",
33
- "fast-xml-parser": "^5.2.5",
34
- "extract-zip": "^2.0.1",
35
- "fs-extra": "^11.3.2",
36
- "ora": "^9.3.0"
37
- },
38
- "devDependencies": {
39
- "@types/extract-zip": "^2.0.3",
40
- "@types/fs-extra": "^11.0.4",
41
- "@types/node": "^24.3.0",
42
- "ts-loader": "^9.5.4",
43
- "typescript": "^5.9.2",
44
- "webpack": "^5.101.3",
45
- "webpack-cli": "^6.0.1",
46
- "webpack-merge": "^6.0.1"
47
- },
48
- "packageManager": "pnpm@10.17.0"
49
- }
@@ -1,15 +0,0 @@
1
- /*!
2
- * mime-db
3
- * Copyright(c) 2014 Jonathan Ong
4
- * Copyright(c) 2015-2022 Douglas Christopher Wilson
5
- * MIT Licensed
6
- */
7
-
8
- /*!
9
- * mime-types
10
- * Copyright(c) 2014 Jonathan Ong
11
- * Copyright(c) 2015 Douglas Christopher Wilson
12
- * MIT Licensed
13
- */
14
-
15
- /*! Axios v1.13.6 Copyright (c) 2026 Matt Zabriskie and contributors */