-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 3.68 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@builddao/near-social-js",
"version": "1.1.0-beta.6",
"description": "A JavaScript SDK for interacting with the social contract (social.near) with helper functions for typical social features.",
"homepage": "https://nearbuilders.github.io/near-social-js/",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/NEARBuilders/near-social-js"
},
"contributors": [
{
"name": "Elliot Braem",
"url": "https://github.com/elliotBraem"
},
{
"name": "Jas",
"email": "jaswinder@harmonicguild.io",
"url": "https://github.com/jaswinder6991"
},
{
"name": "Kieran O'Neill",
"email": "hello@kieranoneill.com",
"url": "https://github.com/kieranroneill"
}
],
"bugs": "https://github.com/NEARBuilders/near-social-js/issues/new?assignees=kieranroneill&labels=%F0%9F%90%9B+bug&projects=&template=bug_report_template.yml&title=%5BBug%5D%3A+",
"license": "MIT",
"keywords": [
"blockchain",
"near",
"nearprotocol",
"social"
],
"private": false,
"engines": {
"node": ">=18.20.2"
},
"scripts": {
"build": "tsup",
"docs:build": "docusaurus build --out-dir .docs",
"docs:serve": "docusaurus serve --dir .docs --no-open",
"docs:start": "docusaurus start --no-open --port 8080",
"lint": "eslint",
"node:start": "./scripts/start_node.sh",
"node:stop": "./scripts/stop_node.sh",
"prepare": "husky",
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"test": "./scripts/test.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@docusaurus/babel": "^3.5.2",
"@docusaurus/core": "^3.5.2",
"@docusaurus/module-type-aliases": "^3.5.2",
"@docusaurus/plugin-rsdoctor": "^3.5.2",
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/remark-plugin-npm2yarn": "^3.5.2",
"@docusaurus/theme-live-codeblock": "^3.5.2",
"@docusaurus/tsconfig": "^3.5.2",
"@eslint/js": "^9.1.1",
"@mdx-js/react": "^3.0.1",
"@near-js/keystores-node": "^0.1.1",
"@near-js/types": "^0.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"@typescript-eslint/parser": "^7.7.1",
"clsx": "^2.1.1",
"docusaurus-plugin-sass": "^0.2.5",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"near-api-js": "^5.0.1",
"near-sandbox": "0.0.18",
"prettier": "^3.2.5",
"prism-react-renderer": "^2.3.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"sass": "^1.75.0",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"typescript-transform-paths": "^3.5.1"
},
"dependencies": {
"@near-js/accounts": "^1.3.1",
"@near-js/client": "^0.0.2",
"@near-js/crypto": "^1.4.1",
"@near-js/keystores": "^0.2.1",
"@near-js/providers": "^1.0.1",
"@near-js/transactions": "^1.3.1",
"@near-js/utils": "^1.0.1",
"bignumber.js": "^9.1.2",
"tsup": "^8.3.0"
},
"resolutions": {
"braces": "^3.0.3",
"ws": "^8.17.1",
"base-x": "3.0.0"
}
}