-
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.12 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.12 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": "ag-tune-lapoet",
"version": "1.0.0",
"description": "AG-TUNE: A Neuro-Symbolic Generative Poetry Engine",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"train": "node train-lyrics.js",
"verify": "node verify-retention.js",
"test-engine": "node test-engine.js",
"continuous": "node continuous-training.js",
"demo": "node demo-pretrained.js",
"test-modules": "node test-module-validation.js",
"test-invariants": "node test-system-invariants.js",
"test-ablation": "node test-ablation-study.js",
"test-interpretability": "node test-interpretability.js",
"test-validation-framework": "node test-validation-framework.js",
"test-all": "npm run test-engine && npm run test-modules && npm run test-ablation && npm run test-interpretability && npm run test-validation-framework",
"test-coverage": "c8 npm run test-all"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"c8": "^10.1.2",
"vite": "^7.2.6"
}
}