-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "@org/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {},
"private": true,
"dependencies": {
"js-yaml": "^4.1.1",
"liquidjs": "^10.25.0",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@nx/js": "22.6.0-beta.6",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.19",
"nx": "22.6.0-beta.6",
"prettier": "^2.6.2",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"vitest": "^4.0.18"
},
"workspaces": [
"packages/*"
],
"nx": {
"nxCloudImplicitDependencies": [
"698fe56d9c60351a0e65a82b:nx-mcp"
],
"targets": {
"sync-artifacts": {
"command": "node scripts/sync-artifacts.mjs"
},
"sync-artifacts-verification": {
"command": "node scripts/sync-artifacts.mjs --check"
},
"validate-cursor-plugin": {
"command": "node scripts/validate-cursor-plugin.mjs"
},
"test": {
"command": "npx vitest run",
"inputs": [
"{workspaceRoot}/tests/**/*.test.mjs",
"{workspaceRoot}/artifacts/skills/monitor-ci/**/*",
"{workspaceRoot}/vitest.config.mjs"
]
}
}
}
}