-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@ragarwal06/hana-orm",
"version": "1.0.0",
"description": "HANA ORM library for node js applications",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ragarwal06/hana-orm.git"
},
"keywords": [
"hana",
"orm",
"cf",
"sap",
"nodejs",
"js",
"ts",
"db",
"typescript",
"javascript",
"database"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"private": false,
"packageManager": "^pnpm@8.6.5",
"files": [
"dist"
],
"engines": {
"node": ">=14.19"
},
"scripts": {
"typecheck": "tsc",
"build": "npm run clean && rollup --config ./rollup.config.js",
"clean": "rimraf dist",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check --config ./.prettierrc.json src/**/*.{ts} --no-error-on-unmatched-pattern",
"format:fix": "prettier --config ./.prettierrc.json src/**/*.{ts} --write . --no-error-on-unmatched-pattern",
"beta": "npm run build && npm publish --tag beta --access public",
"release": "npm run build && npm publish --access public"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/eslint": "^8.44.2",
"@types/sap__xsenv": "^3.3.0",
"@types/express": "^4.0.0",
"@sap/hana-client": "^2.17.22",
"prettier": "^3.0.0",
"typescript": "5.1.6",
"rimraf": "^5.0.1",
"tslib": "^2.6.1",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-copy": "^3.4.0",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-alias": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-import": "^2.28.1"
},
"peerDependencies": {
"@sap/hana-client": "^2.0.0",
"@sap/xsenv": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}