-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "@fleekhq/space-client",
"version": "1.1.10",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn copy-dts",
"build:cjs": "tsc --module commonjs --target es2015 --outDir ./dist",
"build:esm": "tsc --module es2015 --target es5 --outDir ./dist/esm -d false",
"clean": "rimraf ./dist",
"lint": "eslint ./ --ext .ts",
"lint:fix": "yarn lint -- --fix",
"test": "jest",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"build-client-example": "webpack example/client.js -o example/main.js",
"example": "npm run build && npm run build-client-example && npx http-server example -p 3001",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FleekHQ/space-client.git"
},
"keywords": [
"package",
"typescript"
],
"author": "Fleek Labs Inc.",
"bugs": {
"url": "https://github.com/FleekHQ/space-client/issues"
},
"homepage": "https://github.com/FleekHQ/space-client#readme",
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"copyfiles": "^2.3.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^9.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"@types/google-protobuf": "^3.7.2",
"google-protobuf": "^3.12.2",
"grpc-web": "^1.2.0"
}
}