-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.4 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
{
"name": "@guardianui/test",
"version": "1.0.4",
"description": "<p align=\"center\"> <picture> <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/GuardianUI/landing-page/blob/main/assets/images/logo.png\"> <img alt=\"guardianui logo\" src=\"https://github.com/GuardianUI/landing-page/blob/main/assets/images/logo.png\" width=\"auto\" height=\"75\"> </picture> </p>",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"bundle": "npx webpack --config ./src/webpack.config.js",
"publish-package": "npm run bundle && npx tsc && npm publish --access public",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuardianUI/guardianui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GuardianUI/guardianui/issues"
},
"homepage": "https://github.com/GuardianUI/guardianui#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@playwright/test": "~1.33.0",
"dotenv": "^16.0.3",
"ethers": "5.7.2"
}
}