-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 KB
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
{
"name": "@makeplane/plane-node-sdk",
"version": "0.2.8",
"description": "Node SDK for Plane",
"author": "Plane <engineering@plane.so>",
"repository": {
"type": "git",
"url": "https://github.com/makeplane/plane-node-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build:types-bundle": "dts-bundle-generator --no-check -o dist/types.bundle.d.ts dist/index.d.ts",
"build": "tsc && pnpm run build:types-bundle",
"dev": "tsc --watch",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:e2e": "jest --testPathPattern=tests/e2e",
"test:all": "pnpm test:unit && pnpm test:e2e",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist && rm -rf node_modules",
"check:lint": "eslint src/**/*.ts",
"fix:lint": "eslint src/**/*.ts --fix",
"check:format": "prettier --check src/**/*.ts",
"fix:format": "prettier --write src/**/*.ts"
},
"keywords": [
"plane",
"sdk",
"api",
"typescript",
"node"
],
"license": "MIT",
"dependencies": {
"axios": "1.13.5",
"ts-jest": "^29.4.4"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"dts-bundle-generator": "^9.5.1",
"eslint": "9.38.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.4.0",
"jest": "^29.0.0",
"prettier": "3.6.2",
"ts-node": "^10.9.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.2"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=20.0.0"
},
"resolutions": {
"js-yaml": "4.1.1"
}
}