-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@psychedelic/plug-inpage-provider",
"version": "2.5.1",
"main": "dist/src/index.js",
"module": "dist/esm/src/index.js",
"jsnext:main": "dist/esm/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm-run-all --parallel build:** && node ./scripts/add-package.js",
"build:cjs": "tsc --module commonjs --target es6 --outDir ./dist",
"build:esm": "tsc --module es2015 --target es6 --outDir ./dist/esm -d false",
"prepublishOnly": "npm run build",
"clean": "rimraf ./dist",
"lint": "eslint --ext .js,.ts ./src/**",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psychedelic/plug-inpage-provider.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@psychedelic"
},
"keywords": [
"package",
"typescript"
],
"author": "Psychedelic",
"bugs": {
"url": "https://github.com/Psychedelic/plug-inpage-provider/issues"
},
"homepage": "https://github.com/Psychedelic/plug-inpage-provider#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@types/jest": "^26.0.22",
"@types/react-test-renderer": "^17.0.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"peerDependencies": {},
"dependencies": {
"@dfinity/agent": "0.9.3",
"@dfinity/candid": "0.9.3",
"@dfinity/principal": "0.9.3",
"@types/chrome": "^0.0.180",
"@walletconnect/browser-utils": "^1.7.8",
"@walletconnect/client": "^1.7.8",
"buffer": "^6.0.3",
"buffer-crc32": "^0.2.13",
"crypto-js": "^4.1.1",
"json-bigint": "^1.0.0",
"text-encoding-shim": "^1.0.5"
}
}