-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
40
41
42
43
44
45
46
47
48
49
{
"name": "@eskli/monorepo",
"version": "1.0.0",
"description": "Set of tools to create CLIs, SDKs and APIs with ease",
"private": true,
"author": "Stanley Horwood <stanley@hsjm.io>",
"license": "MIT",
"homepage": "https://github.com/hsjm-io/hsjm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hsjm-io/hsjm.git"
},
"scripts": {
"dev": "tsup --watch",
"test:ui": "vitest --ui",
"eskli": "node ./packages/cli/bin/cli.cjs"
},
"keywords": [
"cli",
"sdk",
"api",
"esbuild"
],
"devDependencies": {
"@hsjm/eslint-config": "^1.0.3",
"@types/node": "^18.0.6",
"@vitest/ui": "^0.18.1",
"consola": "^2.15.3",
"eslint": "^8.20.0",
"tsup": "^6.1.3",
"vite": "^3.0.2",
"vitest": "^0.18.1"
},
"eslintConfig": {
"ignorePatterns": [
"bin",
"dist",
"node_modules",
"LICENCE",
".github",
".vscode",
"*.yaml"
],
"extends": [
"@hsjm/eslint-config/basic",
"@hsjm/eslint-config/typescript"
]
}
}