-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1017 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1017 Bytes
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
34
35
36
37
{
"name": "nlap",
"version": "0.4.0",
"private": true,
"description": "Natural Language Action Parser - Transform natural language into validated, executable actions",
"author": "Chris Lloyd",
"repository": {
"type": "git",
"url": "https://github.com/chrisdevelops/nlap-typescript-library.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit --project tsconfig.base.json",
"lint": "eslint packages --ext .ts",
"clean": "rm -rf packages/*/dist"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0",
"zod": "^3.22.4"
},
"engines": {
"node": ">=18.0.0"
}
}