-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 KB
/
package.json
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
57
{
"name": "playwright-decorators",
"version": "0.16.0",
"description": "Decorators for writing Playwright based tests.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "SebastianSedzik@gmail.com",
"license": "MIT",
"keywords": [
"playwright",
"test",
"decorators",
"typescript",
"ts",
"ts-decorators",
"playwright-decorators"
],
"repository": {
"type": "git",
"url": "https://github.com/SebastianSedzik/playwright-decorators.git"
},
"files": [
"dist"
],
"workspaces": [
"examples",
"."
],
"scripts": {
"build": "tsc && vite build",
"postbuild": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"lint": "eslint --ignore-path .gitignore ./lib ./tests",
"prettier": "prettier --ignore-path .gitignore --check ./lib ./tests",
"test": "playwright test",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@playwright/test": "1.36.1",
"@types/node": "20.17.17",
"@typescript-eslint/eslint-plugin": "5.62.0",
"dts-bundle-generator": "8.1.2",
"eslint": "8.57.0",
"prettier": "3.5.0",
"typescript": "5.7.3",
"vite": "^5.4.10",
"vite-plugin-cjs-interop": "0.0.8",
"vite-plugin-esmodule": "1.5.0"
},
"peerDependencies": {
"@playwright/test": ">=1.35.1 && <2.0.0",
"typescript": ">=5.1.6"
}
}