添加 .gitignore 文件,包含 node_modules、temp、日志和系统文件;创建 package.json 和 package-lock.json,定义 Playwright 依赖

This commit is contained in:
2026-02-02 18:31:35 +08:00
parent 8831882462
commit 8df4d5c0d9
3 changed files with 64 additions and 0 deletions

5
package.json Normal file
View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"playwright": "^1.58.1"
}
}