@content-reviewer/core 0.0.1 → 0.0.3
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.
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@content-reviewer/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Library for reviewing written content using LLMs",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -20,13 +20,6 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsup src/index.ts --format cjs,esm --dts --clean --tsconfig tsconfig.build.json",
|
|
25
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --tsconfig tsconfig.build.json",
|
|
26
|
-
"test": "vitest run",
|
|
27
|
-
"test:watch": "vitest",
|
|
28
|
-
"clean": "rm -rf dist"
|
|
29
|
-
},
|
|
30
23
|
"keywords": [
|
|
31
24
|
"ai",
|
|
32
25
|
"llm",
|
|
@@ -66,5 +59,12 @@
|
|
|
66
59
|
"tsup": "^8.5.1",
|
|
67
60
|
"typescript": "^5.9.3",
|
|
68
61
|
"vitest": "^4.0.9"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean --tsconfig tsconfig.build.json",
|
|
65
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --tsconfig tsconfig.build.json",
|
|
66
|
+
"test": "vitest run",
|
|
67
|
+
"test:watch": "vitest",
|
|
68
|
+
"clean": "rm -rf dist"
|
|
69
69
|
}
|
|
70
|
-
}
|
|
70
|
+
}
|