@share-crm/sharedev-cli 0.0.4-rc.1 → 0.0.4-rc.12
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/dist/sharedev.js +1 -1
- package/package.json +6 -3
- package/dist/f0e66594557af6ecca12.json +0 -48
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@share-crm/sharedev-cli",
|
|
3
|
-
"version": "0.0.4-rc.
|
|
3
|
+
"version": "0.0.4-rc.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "sharedev command line tool",
|
|
6
6
|
"type": "module",
|
|
@@ -18,15 +18,18 @@
|
|
|
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-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",
|
|
22
|
+
"build:all": "npm run build && npm run build:bin",
|
|
21
23
|
"dev": "tsc --noEmit --watch & webpack --config build/webpack/webpack.dev.cjs --watch",
|
|
22
24
|
"dev2": "node src/cli.ts",
|
|
23
25
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"prettier": "prettier --write ./src/**/*.ts"
|
|
26
|
+
"prettier": "prettier --write ./src/**/*.ts",
|
|
27
|
+
"build:debug": "tsc --noEmit && webpack --config build/webpack/webpack.debug.cjs"
|
|
25
28
|
},
|
|
26
29
|
"dependencies": {
|
|
27
30
|
"@clack/prompts": "^1.1.0",
|
|
28
31
|
"@mariozechner/pi-coding-agent": "^0.62.0",
|
|
29
|
-
"axios": "
|
|
32
|
+
"axios": "~1.13.0",
|
|
30
33
|
"chalk": "^5.6.2",
|
|
31
34
|
"commander": "^14.0.1",
|
|
32
35
|
"fast-xml-parser": "^5.2.5",
|
|
@@ -1,48 +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
|
-
"dev": "tsc --noEmit --watch & webpack --config build/webpack/webpack.dev.cjs --watch",
|
|
22
|
-
"dev2": "node src/cli.ts",
|
|
23
|
-
"typecheck": "tsc --noEmit",
|
|
24
|
-
"prettier": "prettier --write ./src/**/*.ts"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@clack/prompts": "^1.1.0",
|
|
28
|
-
"@mariozechner/pi-coding-agent": "^0.62.0",
|
|
29
|
-
"axios": "^1.11.0",
|
|
30
|
-
"chalk": "^5.6.2",
|
|
31
|
-
"commander": "^14.0.1",
|
|
32
|
-
"fast-xml-parser": "^5.2.5",
|
|
33
|
-
"extract-zip": "^2.0.1",
|
|
34
|
-
"fs-extra": "^11.3.2",
|
|
35
|
-
"ora": "^9.3.0"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@types/extract-zip": "^2.0.3",
|
|
39
|
-
"@types/fs-extra": "^11.0.4",
|
|
40
|
-
"@types/node": "^24.3.0",
|
|
41
|
-
"ts-loader": "^9.5.4",
|
|
42
|
-
"typescript": "^5.9.2",
|
|
43
|
-
"webpack": "^5.101.3",
|
|
44
|
-
"webpack-cli": "^6.0.1",
|
|
45
|
-
"webpack-merge": "^6.0.1"
|
|
46
|
-
},
|
|
47
|
-
"packageManager": "pnpm@10.17.0"
|
|
48
|
-
}
|