-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "@susisu/hokemi",
"version": "0.2.1",
"description": "Minimal type-safe dependency injection framework for TypeScript",
"repository": "https://github.com/susisu/hokemi.git",
"author": "Susisu <[email protected]>",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"files": [
"lib",
"src",
"!src/**/*.spec.ts",
"!src/**/__tests__"
],
"scripts": {
"format": "prettier --write '*.js' src",
"format:check": "prettier --check '*.js' src",
"lint": "eslint --fix '*.js' src",
"lint:check": "eslint '*.js' src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --coverage",
"test:dev": "vitest dev --coverage.enabled --coverage.reporter=text",
"build": "tsup",
"prepublishOnly": "run-s format:check lint:check typecheck test build"
},
"devDependencies": {
"@susisu/eslint-config": "^0.0.90",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/eslint-plugin": "^1.1.4",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "~5.6.2",
"vitest": "^2.1.1"
}
}