-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 996 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
{
"name": "@deterministic-solutions/workspace-projection-conformance",
"version": "0.1.0",
"description": "Proves that supported source artifacts are authorized, reproducible projections of semantic authority.",
"type": "module",
"private": true,
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"projection-conformance": "./dist/cli/invokes-workspace-projection-conformance.js",
"semantic-body-shepherd": "./dist/cli/invokes-workspace-projection-conformance.js"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run build && node --test dist/test",
"check": "npm test"
},
"dependencies": {
"@deterministic-solutions/semantic-kernel": "file:../semantic-kernel"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}