-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "@concordium/ccd-js-gen",
"version": "1.2.1",
"description": "Generate JS clients for the Concordium Blockchain",
"type": "module",
"bin": "bin/ccd-js-gen.js",
"main": "lib/src/lib.js",
"module": "lib/src/lib.js",
"typings": "lib/src/lib.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build-dev": "yarn build",
"clean": "rm -r lib",
"lint": "eslint . --cache --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "yarn lint --fix",
"prettier": "prettier . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore --ignore-path .gitignore",
"fmt": "yarn prettier --write",
"fmt-check": "yarn prettier --check",
"test": "jest"
},
"files": [
"lib/**/*.json",
"lib/src/**/*",
"src",
"bin"
],
"keywords": [
"concordium",
"smart-contracts"
],
"repository": {
"type": "git",
"url": "https://github.com/Concordium/concordium-node-sdk-js",
"directory": "packages/ccd-js-gen"
},
"author": {
"name": "Concordium Software",
"email": "[email protected]",
"url": "https://concordium.com"
},
"license": "Apache-2.0",
"peerDependencies": {
"@concordium/web-sdk": ">= 7"
},
"dependencies": {
"@concordium/web-sdk": "workspace:^",
"buffer": "^6.0.3",
"commander": "^11.0.0",
"sanitize-filename": "^1.6.3",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^20.5.0",
"eslint": "8",
"jest": "^29.6.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}