-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
71
72
{
"name": "pinia-di",
"version": "3.1.2",
"description": "DI(dependency-injection) for pinia. work with vue@3",
"main": "dist/pinia-di.js",
"module": "dist/pinia-di.esm.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"src",
"dist",
"types",
"package.json"
],
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint --ext .ts src/**",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"serve": "serve"
},
"repository": {
"type": "git",
"url": "https://github.com/ccqgithub/pinia-di.git"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/types": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-virtual": "^3.0.1",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.5",
"@types/puppeteer": "^5.4.7",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"brotli": "^1.3.3",
"chalk": "^5.2.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"minimist": "^1.2.8",
"prettier": "^2.8.8",
"rollup": "^3.21.8",
"rollup-plugin-dts": "^5.3.0",
"@rollup/plugin-terser": "^0.4.1",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4",
"zlib": "^1.0.5",
"enquirer": "^2.3.6",
"semver": "^7.5.1",
"pinia": "^2.0.36",
"vue": "^3.3.2"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.2.0"
},
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/pinia-di.esm.js",
"require": "./dist/pinia-di.js",
"default": "./dist/pinia-di.js"
}
}