mirror of https://github.com/vacp2p/waku-ts.git
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "waku-ts",
|
|
"description": "Waku Typescript Client",
|
|
"version": "0.1.0",
|
|
"author": "Vac <github.com/vacp2p>",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"waku",
|
|
"whisper",
|
|
"messaging",
|
|
"networking",
|
|
"libp2p",
|
|
"devp2p",
|
|
"vac",
|
|
"p2p"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/cjs/index.js",
|
|
"types": "dist/cjs/index.d.ts",
|
|
"unpkg": "dist/umd/index.min.js",
|
|
"homepage": "https://github.com/vacp2p/waku-ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vacp2p/waku-ts.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vacp2p/waku-ts/issues"
|
|
},
|
|
"scripts": {
|
|
"start": "tsdx watch",
|
|
"clean": "rm -rf dist",
|
|
"build:cjs": "./node_modules/.bin/tsc -p tsconfig.cjs.json",
|
|
"build:umd": "webpack",
|
|
"build": "yarn clean && yarn build:cjs && yarn build:umd",
|
|
"test": "tsdx test ./test",
|
|
"lint": "tsdx lint src test",
|
|
"prepare": "yarn lint && yarn build && yarn test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "25.1.1",
|
|
"@types/node": "13.7.0",
|
|
"husky": "4.2.1",
|
|
"tsdx": "0.12.3",
|
|
"tslib": "1.10.0",
|
|
"typescript": "3.7.5",
|
|
"webpack": "4.41.6",
|
|
"webpack-cli": "3.3.11"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|