-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "@mondaydotcomorg/api",
"version": "6.0.0",
"description": "monday.com API client",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"prettier": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint --fix \"lib/**/*.ts\"",
"test": "jest -c",
"watch": "rollup -c -w",
"update-versions": "npm run build && node dist/scripts/update-versions.js",
"prepublish": "npm version patch && npm run build"
},
"engines": {
"node": ">= 16.20.0"
},
"author": "monday.com Api Team",
"license": "MIT",
"keywords": [
"monday",
"api",
"graphql"
],
"repository": {
"type": "git",
"url": "https://github.com/mondaycom/monday-graphql-api/tree/main/packages/api"
},
"dependencies": {
"graphql": "16.8.2",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.18",
"jest": "^29.7.0",
"moment": "^2.30.1",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.3",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}