knarr 0.0.1
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/LICENSE +21 -0
- package/README.md +163 -0
- package/dist/add-ODK52RZI.mjs +3 -0
- package/dist/bell-YD6IWNXO.mjs +2 -0
- package/dist/check-YVEJEI2G.mjs +6 -0
- package/dist/chokidar-LVDD2IK4.mjs +4 -0
- package/dist/chunk-23HXXAGG.mjs +5 -0
- package/dist/chunk-2EZDTBUU.mjs +3 -0
- package/dist/chunk-2GDRDQA5.mjs +3 -0
- package/dist/chunk-2QPLXLJW.mjs +3 -0
- package/dist/chunk-2VCW5RWI.mjs +3 -0
- package/dist/chunk-3KNUBUPH.mjs +3 -0
- package/dist/chunk-7DZPDPP6.mjs +3 -0
- package/dist/chunk-7HVPEBK5.mjs +7 -0
- package/dist/chunk-7JG555TZ.mjs +3 -0
- package/dist/chunk-B3DZ5HVQ.mjs +3 -0
- package/dist/chunk-BS4VKVYH.mjs +3 -0
- package/dist/chunk-FU7FCNTW.mjs +3 -0
- package/dist/chunk-FUINO5RD.mjs +3 -0
- package/dist/chunk-HQ7NKBQW.mjs +4 -0
- package/dist/chunk-IM555H3S.mjs +4 -0
- package/dist/chunk-KXLQGVT2.mjs +13 -0
- package/dist/chunk-MBKCCWSD.mjs +3 -0
- package/dist/chunk-NBSJGM2X.mjs +3 -0
- package/dist/chunk-OLUZ7T7G.mjs +3 -0
- package/dist/chunk-OXI2KGCW.mjs +14 -0
- package/dist/chunk-SFLWVTJC.mjs +3 -0
- package/dist/chunk-SYADAYF4.mjs +3 -0
- package/dist/chunk-TEFMLGCB.mjs +3 -0
- package/dist/chunk-U5ZZAYNU.mjs +13 -0
- package/dist/chunk-V2ED74ZQ.mjs +3 -0
- package/dist/chunk-XQPVRRTN.mjs +3 -0
- package/dist/chunk-XQVMCMO7.mjs +7 -0
- package/dist/chunk-YZCBBQCH.mjs +19 -0
- package/dist/chunk-Z22BYXWQ.mjs +3 -0
- package/dist/clean-XMLDIZDZ.mjs +3 -0
- package/dist/cli.mjs +10 -0
- package/dist/dev-7L35BV6M.mjs +3 -0
- package/dist/doctor-4TTAYNGW.mjs +4 -0
- package/dist/fs-35635IS7.mjs +2 -0
- package/dist/history-XUZSDCNE.mjs +2 -0
- package/dist/index.d.ts +434 -0
- package/dist/index.mjs +3530 -0
- package/dist/init-OBJFQ6OB.mjs +7 -0
- package/dist/list-AQKUBZ2I.mjs +5 -0
- package/dist/migrate-7B7ACQHY.mjs +8 -0
- package/dist/preflight-TVJFHRI2.mjs +2 -0
- package/dist/publish-Q4JYQPQP.mjs +3 -0
- package/dist/push-NHCPN6MO.mjs +3 -0
- package/dist/remove-PDERBH66.mjs +2 -0
- package/dist/reset-3FXWAAPQ.mjs +3 -0
- package/dist/restore-YGPO42W4.mjs +11 -0
- package/dist/rollback-FKNGLGFC.mjs +3 -0
- package/dist/status-3VUPPR5D.mjs +4 -0
- package/dist/tailwind-source-ND5FE6PQ.mjs +5 -0
- package/dist/topo-sort-WEIVPJKN.mjs +2 -0
- package/dist/tracker-R4ZZIDJV.mjs +2 -0
- package/dist/update-QPBWYDSG.mjs +3 -0
- package/dist/use-NKLXGPIZ.mjs +3 -0
- package/dist/vite-config-URP2SYRQ.mjs +2 -0
- package/dist/vite-plugin.d.ts +5 -0
- package/dist/vite-plugin.mjs +215 -0
- package/dist/watch-orchestrator-F6S5WQQX.mjs +3 -0
- package/dist/watcher-PTPUN2HE.mjs +3 -0
- package/dist/webpack-plugin.d.ts +47 -0
- package/dist/webpack-plugin.mjs +143 -0
- package/dist/workspace-L5CGPK7U.mjs +2 -0
- package/dist/xxhash-wasm-DTW44IIQ.mjs +3 -0
- package/package.json +126 -0
package/package.json
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "knarr",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Copy local npm package builds into consumer node_modules with incremental sync and watch mode.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"knarr": "dist/cli.mjs"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.mjs"
|
|
14
|
+
},
|
|
15
|
+
"./vite": {
|
|
16
|
+
"types": "./dist/vite-plugin.d.ts",
|
|
17
|
+
"import": "./dist/vite-plugin.mjs"
|
|
18
|
+
},
|
|
19
|
+
"./webpack": {
|
|
20
|
+
"types": "./dist/webpack-plugin.d.ts",
|
|
21
|
+
"import": "./dist/webpack-plugin.mjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"typesVersions": {
|
|
25
|
+
"*": {
|
|
26
|
+
"vite": [
|
|
27
|
+
"./dist/vite-plugin.d.ts"
|
|
28
|
+
],
|
|
29
|
+
"webpack": [
|
|
30
|
+
"./dist/webpack-plugin.d.ts"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"dev": "tsup --watch",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:watch": "vitest",
|
|
43
|
+
"bench": "vitest bench",
|
|
44
|
+
"lint": "tsc --noEmit",
|
|
45
|
+
"prepublishOnly": "pnpm build"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"npm",
|
|
49
|
+
"link",
|
|
50
|
+
"local",
|
|
51
|
+
"development",
|
|
52
|
+
"local-package",
|
|
53
|
+
"yalc",
|
|
54
|
+
"package",
|
|
55
|
+
"monorepo",
|
|
56
|
+
"pnpm",
|
|
57
|
+
"react",
|
|
58
|
+
"vite",
|
|
59
|
+
"webpack",
|
|
60
|
+
"nextjs",
|
|
61
|
+
"yarn",
|
|
62
|
+
"bun",
|
|
63
|
+
"symlink",
|
|
64
|
+
"copy"
|
|
65
|
+
],
|
|
66
|
+
"publishConfig": {
|
|
67
|
+
"access": "public",
|
|
68
|
+
"registry": "https://registry.npmjs.org"
|
|
69
|
+
},
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"repository": {
|
|
72
|
+
"type": "git",
|
|
73
|
+
"url": "git+https://github.com/oleg-kuibar/knarr.git"
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://github.com/oleg-kuibar/knarr#readme",
|
|
76
|
+
"bugs": {
|
|
77
|
+
"url": "https://github.com/oleg-kuibar/knarr/issues"
|
|
78
|
+
},
|
|
79
|
+
"author": "Oleg Kuibar (https://github.com/oleg-kuibar)",
|
|
80
|
+
"packageManager": "pnpm@10.33.2",
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": ">=22.12.0"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@types/node": "^25.6.0",
|
|
86
|
+
"@types/picomatch": "^4.0.3",
|
|
87
|
+
"tsup": "^8.5.1",
|
|
88
|
+
"typescript": "^6.0.3",
|
|
89
|
+
"vite": "^8.0.10",
|
|
90
|
+
"vitest": "^4.1.5"
|
|
91
|
+
},
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"vite": ">=5.0.0",
|
|
94
|
+
"webpack": ">=5.0.0",
|
|
95
|
+
"@rspack/core": ">=0.5.0"
|
|
96
|
+
},
|
|
97
|
+
"peerDependenciesMeta": {
|
|
98
|
+
"vite": {
|
|
99
|
+
"optional": true
|
|
100
|
+
},
|
|
101
|
+
"webpack": {
|
|
102
|
+
"optional": true
|
|
103
|
+
},
|
|
104
|
+
"@rspack/core": {
|
|
105
|
+
"optional": true
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"chokidar": "^5.0.0",
|
|
110
|
+
"citty": "^0.2.2",
|
|
111
|
+
"picocolors": "^1.1.1",
|
|
112
|
+
"picomatch": "^4.0.4",
|
|
113
|
+
"xxhash-wasm": "^1.1.0"
|
|
114
|
+
},
|
|
115
|
+
"pnpm": {
|
|
116
|
+
"overrides": {
|
|
117
|
+
"dompurify": "^3.4.1",
|
|
118
|
+
"picomatch": "^4.0.4",
|
|
119
|
+
"postcss": "^8.5.10",
|
|
120
|
+
"rollup": "^4.59.0"
|
|
121
|
+
},
|
|
122
|
+
"onlyBuiltDependencies": [
|
|
123
|
+
"esbuild"
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
}
|