-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
50
51
52
{
"name": "divisions",
"version": "0.1.4",
"description": "Minimalist modular backend development",
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"bin": {
"div": "./dist/bin/div.js"
},
"type": "module",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"check": "biome check --apply .",
"prepublishOnly": "pnpm run build",
"test": "vitest"
},
"keywords": [
"nodejs"
],
"files": [
"bin",
"dist"
],
"author": "Mathieu Schimmerling <mathieu.schimmerling@protonmail.com>",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"citty": "^0.1.5",
"consola": "^3.2.3",
"depcheck": "^1.4.7",
"dotenv": "^16.4.1",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"json-schema": "^0.4.0",
"pkg-dir": "^8.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.11.17",
"lint-staged": "^15.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=20.11.0"
}
}