rapidkit 0.19.1 → 0.21.0
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/README.md +423 -1509
- package/dist/chunk-7LU4Z66R.js +4 -0
- package/dist/chunk-D2ZRDZOE.js +17 -0
- package/dist/chunk-RV6HBTFC.js +2 -0
- package/dist/index.js +194 -800
- package/dist/package.json +10 -3
- package/dist/pythonRapidkitExec-GFCAVUOY.js +1 -0
- package/dist/workspace-LZZGJRGV.js +587 -0
- package/dist/workspace-marker-IOPQ42A7.js +1 -0
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rapidkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Create RapidKit projects with a single command - The official CLI for RapidKit framework",
|
|
6
6
|
"keywords": [
|
|
@@ -58,7 +58,10 @@
|
|
|
58
58
|
"sync:contracts": "node scripts/sync-contracts.mjs",
|
|
59
59
|
"check:contracts": "node scripts/sync-contracts.mjs --check",
|
|
60
60
|
"bundle-size": "npm run build && du -sh dist/ && ls -lh dist/",
|
|
61
|
-
"
|
|
61
|
+
"analyze": "npm run build && npx vite-bundle-visualizer dist/index.js --open",
|
|
62
|
+
"size-check": "npm run build && size-limit",
|
|
63
|
+
"bench": "npx tsx scripts/benchmarks.ts",
|
|
64
|
+
"quality": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run size-check",
|
|
62
65
|
"act-matrix": "act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-22.04 -P macos-latest=ghcr.io/catthehacker/ubuntu:act-22.04 -P windows-latest=ghcr.io/catthehacker/ubuntu:act-22.04 --pull=false -j build-test-matrix"
|
|
63
66
|
},
|
|
64
67
|
"dependencies": {
|
|
@@ -75,6 +78,7 @@
|
|
|
75
78
|
},
|
|
76
79
|
"devDependencies": {
|
|
77
80
|
"@eslint/eslintrc": "^3.3.3",
|
|
81
|
+
"@size-limit/preset-big-lib": "^12.0.0",
|
|
78
82
|
"@types/cli-progress": "^3.11.6",
|
|
79
83
|
"@types/fs-extra": "^11.0.4",
|
|
80
84
|
"@types/inquirer": "^9.0.7",
|
|
@@ -90,8 +94,10 @@
|
|
|
90
94
|
"husky": "^9.1.7",
|
|
91
95
|
"lint-staged": "^15.5.2",
|
|
92
96
|
"prettier": "^3.6.2",
|
|
97
|
+
"size-limit": "^12.0.0",
|
|
93
98
|
"tsup": "^8.5.0",
|
|
94
99
|
"typescript": "^5.5.0",
|
|
100
|
+
"vite-bundle-visualizer": "^1.2.1",
|
|
95
101
|
"vitest": "^4.0.15"
|
|
96
102
|
},
|
|
97
103
|
"engines": {
|