-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "bkper",
"version": "3.3.2",
"description": "Node.js command line client for Bkper",
"bin": {
"bkper": "./lib/cli.js"
},
"repository": "https://github.com/bkper/bkper-node.git",
"homepage": "https://bkper.com/docs",
"author": "mael <[email protected]>",
"license": "Apache-2.0",
"private": false,
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib & rm -rf ./node_modules & wait",
"prebuild": "bun install",
"build": "run-s build:*",
"build:clean": "gts clean",
"build:compile": "tsc",
"prewatch": "bun run build",
"watch": "tsc -w",
"patch": "yarn version --patch",
"minor": "yarn version --minor",
"major": "yarn version --major",
"preversion": "bun run build",
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"bkper-js": "^1.1.0",
"commander": "^6.2.1",
"dotenv": "^8.2.0",
"google-auth-library": "^9.14.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@bkper/bkper-api-types": "^5.9.0",
"@types/commander": "^2.12.2",
"@types/node": "^22.5.1",
"gts": "^3.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^5.5.4"
}
}