File tree Expand file tree Collapse file tree 6 files changed +658
-217
lines changed Expand file tree Collapse file tree 6 files changed +658
-217
lines changed Original file line number Diff line number Diff line change 13
13
"author" :
" xiaodong2008 <[email protected] >" ,
14
14
"license" : " MIT" ,
15
15
"devDependencies" : {
16
- "@types/node" : " ^20.11.15 " ,
16
+ "@types/node" : " ^22.7.5 " ,
17
17
"cross-env" : " ^7.0.3" ,
18
18
"markdown-table" : " ^3.0.3" ,
19
- "prettier" : " ^3.2.5 " ,
19
+ "prettier" : " ^3.3.3 " ,
20
20
"pretty-bytes" : " ^6.1.1" ,
21
- "tslib" : " ^2.6.2 " ,
22
- "typescript" : " ^5.4.5 "
21
+ "tslib" : " ^2.7.0 " ,
22
+ "typescript" : " ^5.6.3 "
23
23
}
24
24
}
Original file line number Diff line number Diff line change 6
6
"bugs" : " https://github.com/fastjs-team/core/issues" ,
7
7
"funding" : " https://github.com/sponsors/xiaodong2008" ,
8
8
"main" : " index.js" ,
9
+ "type" : " module" ,
9
10
"module" : " dist/fastjs.esm-bundler.js" ,
10
11
"types" : " dist/types/main.d.ts" ,
11
12
"unpkg" : " dist/fastjs.global.js" ,
64
65
"@rollup/plugin-terser" : " ^0.4.4" ,
65
66
"@rollup/plugin-typescript" : " ^11.1.6" ,
66
67
"jsdom" : " ^24.0.0" ,
68
+ "rolldown" : " ^0.13.2" ,
67
69
"rollup" : " ^4.9.6" ,
68
70
"vitest" : " ^1.5.0"
69
71
}
Original file line number Diff line number Diff line change 1
1
import typescript from "@rollup/plugin-typescript" ;
2
2
import replace from "@rollup/plugin-replace" ;
3
3
import terser from "@rollup/plugin-terser" ;
4
- import packageInfo from "./package.json" assert { type : "json " } ;
4
+ import packageInfo from "./package.json" with { type : "json" } ;
5
5
const version = packageInfo . version ;
6
6
const fileBaseName = "fastjs" ;
7
7
const packageConfig = [ ] ;
Original file line number Diff line number Diff line change 3
3
/* Visit https://aka.ms/tsconfig to read more about this file */
4
4
"target" : " es2022" ,
5
5
"module" : " ESNext" ,
6
- "sourceMap" : true ,
6
+ "sourceMap" : false ,
7
7
"esModuleInterop" : true ,
8
8
"forceConsistentCasingInFileNames" : true ,
9
9
"strict" : true ,
12
12
"moduleResolution" : " node" ,
13
13
"paths" : {
14
14
"@/*" : [" ./src/*" ]
15
- }
15
+ },
16
+ "declaration" : true ,
17
+ "declarationDir" : " ./dist/types"
16
18
},
17
19
"include" : [" src/**/*.ts" ],
18
20
"exclude" : [" node_modules" ]
Original file line number Diff line number Diff line change 30
30
],
31
31
"license" : " MIT" ,
32
32
"dependencies" : {
33
- "@inquirer/prompts" : " ^5 .0.2 " ,
34
- "commander" : " ^12.0 .0" ,
35
- "ora" : " ^8.0.1 " ,
36
- "picocolors" : " ^1.0 .0"
33
+ "@inquirer/prompts" : " ^7 .0.0 " ,
34
+ "commander" : " ^12.1 .0" ,
35
+ "ora" : " ^8.1.0 " ,
36
+ "picocolors" : " ^1.1 .0"
37
37
},
38
38
"devDependencies" : {
39
- "esbuild" : " ^0.20.2 "
39
+ "esbuild" : " ^0.24.0 "
40
40
}
41
41
}
You can’t perform that action at this time.
0 commit comments