forked from ccqgithub/pinia-di
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"name": "pinia-di",
"version": "2.1.2",
"description": "DI(dependency-injection) for pinia. work with vue@3",
"main": "dist/pinia-di.js",
"module": "dist/pinia-di.esm.js",
"unpkg": "dist/pinia-di.umd.js",
"jsdelivr": "dist/pinia-di.umd.js",
"types": "types/index.d.ts",
"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.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/types": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-virtual": "^2.0.3",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.18.3",
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"brotli": "^1.3.2",
"chalk": "^2.4.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"execa": "^1.0.0",
"fs-extra": "^8.1.0",
"minimist": "^1.2.5",
"prettier": "^2.3.0",
"rollup": "^2.43.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.5.4",
"zlib": "^1.0.5",
"enquirer": "^2.3.6",
"semver": "^7.3.5",
"pinia": "^2.0.0",
"vue": "^3.2.0"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.2.0"
}
}