-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
{
"name": "skytable-node",
"version": "0.2.0",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.mjs",
"description": "Offical NodeJS client driver for Skytable",
"author": "Sayan Nandan <[email protected]>",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/skytable/client-nodejs"
},
"bugs": {
"url": "https://github.com/skytable/client-nodejs/issues"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc",
"build:esm": "rollup --config rollup.config.js",
"test": "jest",
"formatting": "prettier src examples __tests__ --check",
"prettier:fix": "prettier src examples __tests__ --write"
},
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.mjs",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"skytable",
"skytable-client"
]
}