-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
71
72
73
{
"name": "@0xsonic/sdk",
"version": "0.2.6",
"description": "Sonic SDK enables you to quickly setup and integrate your decentralized community in a flash!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run format && npm run lint && tsup src/ --format esm,cjs --dts",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,css,md}' --config ./.prettierrc",
"prepublishOnly": "npm run build",
"localPub": "npm run build && rm ./*.tgz && npm pack && cd example/ && npm run getSonic && cd .."
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs"
}
},
"repository": "https://github.com/sahilpabale/sonic-sdk.git",
"author": "Sahil Pabale <[email protected]> (https://sahil.lol)",
"contributors": [
"Anish De <[email protected]> (https://github.com/AnishDe12020)"
],
"keywords": [
"react",
"sonic",
"decentralized",
"community-building",
"orbis"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@chakra-ui/react": "^2.4.3",
"@davatar/react": "^1.11.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@orbisclub/orbis-sdk": "^0.4.5",
"dayjs": "^1.11.7",
"framer-motion": "^7.10.0",
"react-hook-form": "^7.40.0",
"react-icons": "^4.7.1",
"react-query": "^3.39.2",
"recoil": "^0.7.6"
}
}