-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 2.03 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
{
"name": "near-social-bridge",
"version": "1.7.1",
"description": "This library allows you to create a common application using ReactJS and inject it in a controlled way into a Widget on Near Social. Therefore, the Widget talks to the React application and vice versa, making it possible to consume Discovery API resources within the React application.",
"main": "./dist/cjs/index.js",
"module": "./index.js",
"types": "./index.d.ts",
"scripts": {
"clean": "rm -rf dist database components hooks auth bridge navigation api request services session-storage utils constants.d.ts constants.js index.d.ts index.js",
"clean:tests": "cd tests/; rm -rf lib; cd ..",
"build": "npm run clean; tsc -p tsconfig.prod.json; npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepack": "npm install; npm run build",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"build:for:tests": "npm run clean:tests; tsc -p tsconfig.tests.json",
"test": "cd tests; npm run dev",
"build:test": "npm run build:for:tests; cd tests; npm run next:build"
},
"keywords": [
"near social",
"social",
"react",
"app",
"bridge",
"near",
"widget",
"backend"
],
"author": "Wenderson Pires wendersonpdas@gmail.com",
"license": "MIT",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"copyfiles": "^2.4.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"install": "^0.13.0",
"prettier": "^2.8.4",
"tslib": "^2.5.0",
"typescript": "^4.7.3"
},
"repository": "git://github.com/wpdas/near-social-bridge.git",
"dependencies": {}
}