niceeval 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/README.zh.md +1 -1
  3. package/package.json +14 -15
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![license](https://img.shields.io/badge/license-MIT-green?style=flat-square)](package.json)
9
9
  [![docs](https://img.shields.io/badge/docs-readable-111827?style=flat-square)](docs/README.md)
10
10
 
11
- [中文](README.zh.md)
11
+ [中文](README.zh.md) | [Deutsch](assets/README.de.md) | [Español](assets/README.es.md) | [français](assets/README.fr.md) | [日本語](assets/README.ja.md) | [한국어](assets/README.ko.md) | [Português](assets/README.pt.md) | [Русский](assets/README.ru.md)
12
12
 
13
13
  </div>
14
14
 
package/README.zh.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![license](https://img.shields.io/badge/license-MIT-green?style=flat-square)](package.json)
9
9
  [![docs](https://img.shields.io/badge/docs-readable-111827?style=flat-square)](docs/README.md)
10
10
 
11
- [English](README.md)
11
+ [English](README.md) | [Deutsch](assets/README.de.md) | [Español](assets/README.es.md) | [français](assets/README.fr.md) | [日本語](assets/README.ja.md) | [한국어](assets/README.ko.md) | [Português](assets/README.pt.md) | [Русский](assets/README.ru.md)
12
12
 
13
13
  </div>
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "niceeval",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Lightweight TypeScript agent eval tool — eval agents, services, functions, and coding-agent fixtures",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -45,19 +45,6 @@
45
45
  "src",
46
46
  "bin"
47
47
  ],
48
- "scripts": {
49
- "typecheck": "tsc --noEmit",
50
- "test": "vitest run",
51
- "test:watch": "vitest",
52
- "niceeval": "node bin/niceeval.js",
53
- "view:build": "vite build --config src/view/app/vite.config.ts",
54
- "prepare": "pnpm run view:build",
55
- "site:dev": "vite site --host 127.0.0.1 --port 5174",
56
- "site:build": "vite build site",
57
- "docs:dev": "cd docs-site && npx --yes mint@latest dev",
58
- "docs:validate": "cd docs-site && npx --yes mint@latest validate",
59
- "docs:links": "cd docs-site && npx --yes mint@latest broken-links --check-anchors --check-redirects"
60
- },
61
48
  "dependencies": {
62
49
  "autoevals": "0.0.132",
63
50
  "effect": "^3.21.4",
@@ -92,5 +79,17 @@
92
79
  "typescript": "^5.6.0",
93
80
  "vite": "^8.1.0",
94
81
  "vitest": "^4.1.9"
82
+ },
83
+ "scripts": {
84
+ "typecheck": "tsc --noEmit",
85
+ "test": "vitest run",
86
+ "test:watch": "vitest",
87
+ "niceeval": "node bin/niceeval.js",
88
+ "view:build": "vite build --config src/view/app/vite.config.ts",
89
+ "site:dev": "vite site --host 127.0.0.1 --port 5174",
90
+ "site:build": "vite build site",
91
+ "docs:dev": "cd docs-site && npx --yes mint@latest dev",
92
+ "docs:validate": "cd docs-site && npx --yes mint@latest validate",
93
+ "docs:links": "cd docs-site && npx --yes mint@latest broken-links --check-anchors --check-redirects"
95
94
  }
96
- }
95
+ }