-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.2 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
{
"name": "greymoth-devkit",
"version": "0.1.0",
"private": true,
"description": "The shared engine behind greymoth's tools: deterministic rules in, a shareable verdict card out. Zero-LLM, zero-network.",
"type": "module",
"license": "MIT",
"author": "greymoth <m.hirakawa07@icloud.com>",
"homepage": "https://github.com/greymoth-jp/greymoth-devkit",
"repository": {
"type": "git",
"url": "git+https://github.com/greymoth-jp/greymoth-devkit.git"
},
"workspaces": [
"packages/tokens",
"packages/rules-core",
"packages/scorecard",
"packages/sharecard"
],
"scripts": {
"build": "tsc -p packages/tokens/tsconfig.json && node packages/tokens/scripts/gen-css.mjs && tsc -p packages/rules-core/tsconfig.json && tsc -p packages/scorecard/tsconfig.json && tsc -p packages/sharecard/tsconfig.json",
"pretest": "npm run build",
"test": "node --test",
"demo": "node examples/pipeline-demo.ts",
"clean": "node -e \"const{rmSync}=require('node:fs');['tokens','rules-core','scorecard','sharecard'].forEach(p=>rmSync('packages/'+p+'/dist',{recursive:true,force:true}))\""
},
"devDependencies": {
"typescript": "^5.7.2"
},
"engines": {
"node": ">=24"
}
}