-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "nsolid-plugin",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"test": "node scripts/run-tests.mjs",
"test:unit": "node --experimental-test-module-mocks --import tsx/esm --test 'packages/*/test/unit/**/*.test.ts'",
"test:integration": "node --experimental-test-module-mocks --import tsx/esm --test 'packages/*/test/integration/**/*.test.ts'",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"test:marketplace": "node scripts/test-marketplace-install.js",
"plugin:sync": "node scripts/sync-plugin-assets.mjs",
"plugin:check": "node scripts/sync-plugin-assets.mjs --check && node scripts/materialize-github-marketplace.mjs --check",
"prepack": "pnpm plugin:sync",
"prepare": "husky",
"plugin:materialize": "node scripts/sync-plugin-assets.mjs --materialize-skills",
"plugin:clean": "node scripts/sync-plugin-assets.mjs",
"plugin:root": "node scripts/materialize-github-marketplace.mjs",
"plugin:root:check": "node scripts/materialize-github-marketplace.mjs --check"
},
"engines": {
"node": ">=22.3.0"
},
"license": "MIT",
"devDependencies": {
"eslint": "9.39.4",
"husky": "9.1.7",
"neostandard": "0.13.0",
"tsx": "4.22.4"
},
"dependencies": {
"mcp-remote": "0.1.38"
}
}