-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 829 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 829 Bytes
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
{
"name": "marina-provider",
"version": "3.0.1",
"description": "Marina injected API",
"repository": "git@github.com:vulpemventures/marina-provider.git",
"author": "Vulpem Ventures",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"build": "tsdx build --tsconfig tsconfig.json --entry src/index.ts",
"prepare": "tsdx build --tsconfig tsconfig.json --entry src/index.ts"
},
"devDependencies": {
"@ionio-lang/ionio": "^0.4.2",
"liquidjs-lib": "^6.0.2-liquid.23",
"tsdx": "^0.14.1",
"typescript": "^4.6.3"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {}
}