-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "playwright-dev-server",
"version": "0.1.1",
"description": "A development server for injecting scripts into web pages using Playwright",
"main": "dist/index.js",
"bin": {
"playwright-dev": "dist/cli.js"
},
"type": "module",
"scripts": {
"build": "npm run clean && tsc && npm run copy-templates && npm run fix-cli-shebang",
"clean": "node scripts/clean.js",
"copy-templates": "node scripts/copy-templates.js",
"fix-cli-shebang": "node scripts/fix-cli-shebang.js",
"dev": "tsc --watch",
"test": "vitest",
"test:build": "node test-build.js",
"test:tsc": "node test-tsc-build.js",
"prepublishOnly": "npm run build",
"release": "npx np --no-tests"
},
"keywords": [
"playwright",
"development",
"script-injection",
"browser-automation",
"dev-server"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"handlebars": "^4.7.8",
"minimatch": "^10.0.3",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@types/node": "^24.3.1",
"np": "^10.2.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"files": [
"dist",
"package.json",
"templates",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}