-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "baserow-client",
"version": "0.3.0",
"description": "This is basic Node.js Baserow client",
"keywords": [
"api",
"baserow",
"client",
"sdk"
],
"main": "Baserow.js",
"module": "Baserow.mjs",
"types": "Baserow.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tomaskazatel/baserow-client.git"
},
"scripts": {
"build": "tsup Baserow.ts --format cjs,esm --dts --out-dir .",
"release": "npm run build && changeset publish",
"prepare": "husky install",
"lint": "tsc --noEmit",
"changeset": "changeset",
"test": "jest"
},
"author": {
"name": "Tomáš Kazatel",
"email": "[email protected]"
},
"engines": {
"node": "*"
},
"license": "MIT License",
"bugs": {
"url": "https://github.com/tomaskazatel/baserow-client/issues"
},
"homepage": "https://github.com/tomaskazatel/baserow-client#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.6.0",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}