-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "part-di",
"description": "Invert, choose and swap dependencies of application components",
"version": "2.1.1",
"author": "Jesse Sivonen <[email protected]>",
"source": "./src/index.ts",
"main": "./dist/part-di.js",
"module": "./dist/part-di.mjs",
"types": "./dist/part-di.d.ts",
"exports": {
"types": "./dist/part-di.d.ts",
"require": "./dist/part-di.js",
"import": "./dist/part-di.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/pala-software/part-di.git"
},
"scripts": {
"check:lint": "eslint .",
"check:types": "tsc --noEmit",
"check": "pnpm run \"/^check:/\"",
"build": "tsup",
"prepublish": "pnpm check && pnpm build"
},
"devDependencies": {
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"files": [
"dist/part-di.d.ts",
"dist/part-di.js",
"dist/part-di.mjs"
],
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}