-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 962 Bytes
/
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
{
"name": "@dsrv/jsi",
"version": "0.0.2",
"description": "jsonschema interface for smartcontract",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"src/**/*",
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{ts,tsx}\"",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'"
},
"repository": "https://github.com/dsrvlabs/jsi.git",
"author": "daoauth",
"license": "MIT",
"keywords": [
"dsrv",
"blockchain",
"smartcontract"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}