-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 KB
/
package.json
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
38
39
{
"name": "@lapala/framework-base",
"version": "0.11.0",
"description": "Library serving as the foundation for the development of all Lapala services written in TypeScript.",
"private": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"lint": "node ./node_modules/eslint/bin/eslint.js \"src/**/*.ts\" --quiet",
"test": "echo \"Warning: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lapala/framework-base.git"
},
"keywords": [
"lapala",
"framework"
],
"author": "Gilles Coudert <[email protected]> (https://lapala.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lapala/framework-base/issues"
},
"homepage": "https://github.com/lapala/framework-base#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"typescript": "^5.3.3"
},
"dependencies": {
"zod": "^3.22.4"
}
}