-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
{
"name": "@doodlesteam/floo",
"version": "0.1.0",
"description": "Floo wraps the Flow Client Library (FCL), providing better TypeScript typings and convenient helpers for easier integration.",
"license": "MIT",
"author": "Doodles",
"type": "commonjs",
"keywords": [
"flow",
"fcl"
],
"repository": {
"type": "git",
"url": "https://github.com/Doodles/floo"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "eslint src test",
"prettier": "prettier src test --check",
"test": "jest",
"clean:build": "rm -rf ./dist",
"prebuild": "npm run lint && npm run prettier && npm run test && npm run clean:build",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build",
"preversion": "git checkout main && git pull && npm install && npm run build",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"postversion": "npm publish"
},
"devDependencies": {
"@nx/eslint-plugin": "^17.1.2",
"@onflow/types": "^1.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@onflow/fcl": "^1.6.0",
"@onflow/flow-cadut": "^0.2.0-alpha.9",
"@onflow/typedefs": "^1.1.1",
"bignumber.js": "^9.1.2"
}
}