forked from histoire-dev/histoire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1023 Bytes
/
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
{
"name": "@histoire/plugin-percy",
"version": "0.16.0",
"description": "Histoire plugin to take screenshots with Percy for visual regression testing",
"license": "MIT",
"author": {
"name": "Guillaume Chau"
},
"repository": {
"url": "https://github.com/Akryum/histoire.git",
"type": "git",
"directory": "packages/histoire-plugin-percy"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -d",
"watch": "tsc -d -w --sourceMap"
},
"dependencies": {
"@percy/sdk-utils": "^1.1.0",
"defu": "^6.0.0",
"fs-extra": "^10.1.0",
"pathe": "^0.2.0",
"puppeteer": "^13.7.0"
},
"devDependencies": {
"@types/node": "^17.0.32",
"histoire": "workspace:*",
"typescript": "^4.9.5"
},
"peerDependencies": {
"histoire": "^0.16.0"
}
}