-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "@psychedelic/browser-rpc",
"version": "2.2.0",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/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 es2015 --outDir ./dist",
"build:esm": "tsc --module es2015 --target es5 --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/browser-rpc.git"
},
"keywords": [
"package",
"typescript"
],
"author": "Psychedelic",
"bugs": {
"url": "https://github.com/Psychedelic/browser-rpc/issues"
},
"homepage": "https://github.com/Psychedelic/browser-rpc#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@types/chrome": "^0.0.135",
"@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": {
"extensionizer": "^1.0.1",
"joi": "^17.4.0",
"uuid": "^8.3.2"
}
}