File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "name" : " @vitejs/devtools-kit" ,
3+ "type" : " module" ,
4+ "version" : " 0.0.0-alpha.1" ,
5+ "description" : " Vite DevTools Kit" ,
6+ "author" : " VoidZero Inc." ,
7+ "license" : " MIT" ,
8+ "homepage" : " https://github.com/vitejs/devtools#readme" ,
9+ "repository" : {
10+ "directory" : " packages/devtools-kit" ,
11+ "type" : " git" ,
12+ "url" : " git+https://github.com/vitejs/devtools.git"
13+ },
14+ "bugs" : " https://github.com/vitejs/devtools/issues" ,
15+ "keywords" : [
16+ " vite" ,
17+ " devtools" ,
18+ " kit"
19+ ],
20+ "sideEffects" : false ,
21+ "exports" : {
22+ "." : " ./dist/index.mjs"
23+ },
24+ "main" : " ./dist/index.mjs" ,
25+ "types" : " ./dist/index.d.mts" ,
26+ "files" : [
27+ " dist"
28+ ],
29+ "scripts" : {
30+ "build" : " tsdown" ,
31+ "dev" : " tsdown --watch" ,
32+ "prepack" : " pnpm build"
33+ },
34+ "peerDependencies" : {
35+ "vite" : " catalog:build"
36+ },
37+ "devDependencies" : {
38+ "tsdown" : " catalog:build"
39+ }
40+ }
Original file line number Diff line number Diff line change 1+ export const one = 1
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "composite" : true ,
4+ "module" : " esnext" ,
5+ "moduleResolution" : " Bundler" ,
6+ "resolveJsonModule" : true ,
7+ "noEmit" : true ,
8+ "isolatedDeclarations" : true ,
9+ "skipLibCheck" : true
10+ }
11+ }
Original file line number Diff line number Diff line change 1+ import { defineConfig } from 'tsdown'
2+
3+ export default defineConfig ( [
4+ {
5+ entry : [
6+ 'src/index.ts' ,
7+ ] ,
8+ clean : true ,
9+ fixedExtension : true ,
10+ dts : true ,
11+ } ,
12+ ] )
Original file line number Diff line number Diff line change 55 "description" : " DevTools rpc for Vite (work in progress)" ,
66 "author" : " VoidZero Inc." ,
77 "license" : " MIT" ,
8- "homepage" : " https://github.com/vitejs/vite- devtools#readme" ,
8+ "homepage" : " https://github.com/vitejs/devtools#readme" ,
99 "repository" : {
10+ "directory" : " packages/devtools-rpc" ,
1011 "type" : " git" ,
11- "url" : " git+https://github.com/vitejs/vite- devtools.git"
12+ "url" : " git+https://github.com/vitejs/devtools.git"
1213 },
13- "bugs" : " https://github.com/vitejs/vite- devtools/issues" ,
14+ "bugs" : " https://github.com/vitejs/devtools/issues" ,
1415 "keywords" : [
1516 " vite" ,
1617 " devtools" ,
1920 "sideEffects" : false ,
2021 "exports" : {
2122 "." : " ./dist/index.mjs" ,
22- "./presets/ws/server " : " ./dist/presets/ws/server .mjs" ,
23+ "./presets" : " ./dist/presets/index .mjs" ,
2324 "./presets/ws/client" : " ./dist/presets/ws/client.mjs" ,
24- "./presets" : " ./dist/presets/index .mjs"
25+ "./presets/ws/server " : " ./dist/presets/ws/server .mjs"
2526 },
2627 "main" : " ./dist/index.mjs" ,
2728 "types" : " ./dist/index.d.mts" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "composite" : true ,
4+ "module" : " esnext" ,
5+ "moduleResolution" : " Bundler" ,
6+ "resolveJsonModule" : true ,
7+ "noEmit" : true ,
8+ "isolatedDeclarations" : true ,
9+ "skipLibCheck" : true
10+ }
11+ }
Original file line number Diff line number Diff line change 55 "description" : " DevTools for Vite (work in progress)" ,
66 "author" : " VoidZero Inc." ,
77 "license" : " MIT" ,
8- "homepage" : " https://github.com/vitejs/vite- devtools#readme" ,
8+ "homepage" : " https://github.com/vitejs/devtools#readme" ,
99 "repository" : {
10+ "directory" : " packages/devtools-vite" ,
1011 "type" : " git" ,
11- "url" : " git+https://github.com/vitejs/vite- devtools.git"
12+ "url" : " git+https://github.com/vitejs/devtools.git"
1213 },
13- "bugs" : " https://github.com/vitejs/vite- devtools/issues" ,
14+ "bugs" : " https://github.com/vitejs/devtools/issues" ,
1415 "keywords" : [
1516 " vite" ,
1617 " devtools"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default defineConfig({
77 'src/cli.ts' ,
88 'src/dirs.ts' ,
99 ] ,
10- tsconfig : '../../tsconfig.json' ,
10+ tsconfig : '../../tsconfig.pkgs. json' ,
1111 clean : false ,
1212 target : 'esnext' ,
1313 fixedExtension : true ,
Original file line number Diff line number Diff line change 66 "description" : " DevTools browser extension for Vite (work in progress)" ,
77 "author" : " VoidZero Inc." ,
88 "license" : " MIT" ,
9- "homepage" : " https://github.com/vitejs/vite- devtools#readme" ,
9+ "homepage" : " https://github.com/vitejs/devtools#readme" ,
1010 "repository" : {
1111 "type" : " git" ,
12- "url" : " git+https://github.com/vitejs/vite- devtools.git"
12+ "url" : " git+https://github.com/vitejs/devtools.git"
1313 },
14- "bugs" : " https://github.com/vitejs/vite- devtools/issues" ,
14+ "bugs" : " https://github.com/vitejs/devtools/issues" ,
1515 "keywords" : [
1616 " vite" ,
1717 " devtools" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "composite" : true ,
4+ "module" : " esnext" ,
5+ "moduleResolution" : " Bundler" ,
6+ "resolveJsonModule" : true ,
7+ "noEmit" : true ,
8+ "isolatedDeclarations" : true ,
9+ "skipLibCheck" : true
10+ }
11+ }
You can’t perform that action at this time.
0 commit comments