-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (38 loc) · 1.02 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
{
"name": "@socket.tech/ll-core-v2",
"version": "1.0.15",
"description": "Core package for socket liquidity layer",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "prettier-standard --format '**/*.{ts}'",
"bump": "npm version patch",
"bump:next": "npm version prerelease --preid=next",
"test": "echo \"Error: no test specified\" && exit 1",
"publsh-beta": "yarn build && npm publish --tag beta",
"publsh-latest": "yarn build && npm publish --tag latest"
},
"keywords": [],
"author": "movr",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"prettier-standard": "^16.4.1",
"typescript": "^4.3.5"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"dependencies": {
"@socket.tech/ll-core": "^0.1.54"
}
}