-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@dldc/compose",
"version": "8.0.1",
"description": "A middleware and context system",
"keywords": [
"middleware",
"context",
"typescript"
],
"homepage": "https://github.com/dldc-packages/compose#readme",
"bugs": {
"url": "https://github.com/dldc-packages/compose/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dldc-packages/compose.git"
},
"license": "MIT",
"author": "Etienne Dldc <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
}
},
"main": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup --format cjs,esm src/mod.ts --dts",
"build:watch": "tsup --watch --format cjs,esm src/mod.ts --dts",
"changelog": "auto-changelog --stdout --hide-credit true --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "release-it --only-version",
"test": "pnpm run lint && vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:watch:coverage": "vitest --watch --coverage",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"dependencies": {
"@dldc/erreur": "7.1.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.8",
"@vitest/coverage-v8": "^1.6.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}