-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "@kaokei/di",
"version": "3.0.0",
"type": "module",
"description": "Tiny di library depends on typescript decorator.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.cjs",
"jsdelivr": "./dist/index.cjs",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"sideEffects": false,
"homepage": "https://github.com/kaokei/di",
"author": "kaokei",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaokei/di/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaokei/di.git"
},
"keywords": [
"IoC",
"DI",
"Dependency injection"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc && vite build",
"clean": "rm -rf dist/*",
"postpublish": "git push origin --follow-tags",
"prepublishOnly": "npm run clean && npm run build",
"release": "standard-version -r",
"release:first": "standard-version --first-release"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"fs-extra": "^11.2.0",
"inversify": "^6.2.1",
"jsdom": "^25.0.1",
"reflect-metadata": "^0.2.2",
"standard-version": "^9.5.0",
"typescript": "~5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}