-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"name": "@makeplane/plane-node-sdk",
"version": "0.2.11",
"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": "oxlint",
"fix:lint": "oxlint --fix",
"check:format": "oxfmt --check",
"fix:format": "oxfmt"
},
"keywords": [
"plane",
"sdk",
"api",
"typescript",
"node"
],
"license": "MIT",
"dependencies": {
"axios": "1.15.0",
"ts-jest": "^29.4.4"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"dts-bundle-generator": "^9.5.1",
"jest": "^29.0.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"ts-node": "^10.9.0",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"overrides": {
"js-yaml": "4.1.1",
"minimatch@3": "3.1.4",
"handlebars": "4.7.9"
}
}
}