-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.14 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@ninots/framework",
"version": "0.6.1",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nino-ts/framework"
},
"scripts": {
"build": "bun run scripts/build.ts",
"build:dts": "bun run scripts/build-dts.ts",
"docs:generate": "typedoc",
"format": "bunx biome format --write .",
"lint": "bunx biome check .",
"lint:fix": "bunx biome check --write .",
"lint:fix:unsafe": "bunx biome check --write --unsafe .",
"prepare": "bun run scripts/write-meta-dts.ts",
"prepublishOnly": "bun run build",
"test": "bun test",
"test:db": "bun run scripts/test-with-db.ts",
"test:watch": "bun test --watch",
"type-check": "bun run scripts/verify.ts type-check",
"verify:all": "bun run verify:no-any && bun run type-check && bun run test && bun run lint",
"verify:explicit-types": "tsc --noImplicitAny --strict --noEmit",
"verify:no-any": "bun run scripts/verify.ts no-any",
"verify:tests": "bun test"
},
"bin": {
"nino": "./nino"
},
"workspaces": {
"catalog": {
"@types/bun": "latest",
"typescript": "^6.0.0"
},
"catalogs": {
"build": {
"@biomejs/biome": "2.4.14",
"typedoc": "^0.28.19"
}
},
"packages": [
"packages/*"
]
},
"devDependencies": {
"@biomejs/biome": "catalog:build",
"@types/bun": "catalog:",
"typedoc": "catalog:build",
"typescript": "catalog:"
},
"peerDependencies": {
"typescript": "catalog:"
},
"files": [
"bin",
"dist",
"index.ts",
"nino",
"src/bootstrap/app.ts"
]
}