-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 969 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 969 Bytes
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
{
"name": "@gleanwork/mcp-test-utils",
"version": "0.9.1",
"private": true,
"type": "module",
"exports": {
"./mocks/setup": {
"types": "./build/mocks/setup.d.ts",
"import": "./build/mocks/setup.js",
"default": "./build/mocks/setup.js"
}
},
"scripts": {
"build": "rimraf build && tsc",
"lint": "npm-run-all --sequential lint:*",
"lint:eslint": "eslint \"src/**/*.ts\" --fix",
"lint:package-json": "sort-package-json",
"lint:ts": "tsc --noEmit",
"prepare": "pnpm run build",
"watch": "tsc -w"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"msw": "^2.12.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"sort-package-json": "^3.6.0",
"typescript": "^5.9.3"
}
}