-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@deterministic-solutions/semantic-kernel",
"version": "0.1.0",
"description": "A domain-neutral interpreter for deterministic semantic authority.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
"bin": { "semantic-project": "./dist/cli/project-code.js" },
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"clean": "node -e \"const fs=require('node:fs'); for(const path of ['dist','dist-test']) fs.rmSync(path, { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run build && tsc -p tsconfig.test.json && node test/run-tests.mjs",
"check": "npm run test"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.3"
},
"engines": { "node": ">=20" },
"license": "MIT"
}