-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 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
{
"name": "@smonn/container",
"version": "2.0.0",
"description": "TypeScript-based dependency injection container",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"author": {
"name": "Simon Ingeson",
"url": "https://smonn.se"
},
"keywords": [
"async",
"browser",
"browsers",
"node",
"nodejs",
"container",
"inversion of control",
"ioc",
"dependency injection",
"di",
"dependency",
"injection",
"typescript",
"universal"
],
"main": "./dist/container.cjs",
"module": "./dist/container.mjs",
"exports": {
".": {
"require": "./dist/container.cjs",
"import": "./dist/container.mjs"
}
},
"types": "dist/container.d.ts",
"sideEffects": false,
"engines": {
"node": ">=16",
"npm": ">=6"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "vitest run && tsd",
"test:coverage": "jest --runInBand --coverage",
"lint:scripts": "eslint . --ext .ts",
"format:scripts": "prettier . --write",
"format": "npm run format:scripts"
},
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"dts-bundle-generator": "^6.13.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsd": "^0.24.1",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vitest": "^0.23.4"
},
"repository": "github:smonn/container",
"tsd": {
"directory": "test"
}
}