-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.52 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": "vue-proxi",
"version": "0.0.0-semantic-release",
"description": "Tiny proxy component for Vue.js",
"keywords": [
"vue",
"component",
"proxi",
"parent-child",
"proxy",
"provide",
"inject",
"reactive"
],
"license": "MIT",
"repository": "privatenumber/vue-proxi",
"funding": "https://github.com/privatenumber/vue-proxi?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "dist/proxi.cjs.js",
"module": "dist/proxi.esm.js",
"unpkg": "dist/proxi.js",
"scripts": {
"prepare": "simple-git-hooks",
"build": "rollup -c --environment NODE_ENV:production",
"dev-build": "rollup -cw",
"test": "vitest",
"lint": "eslint --cache .",
"prepack": "pnpm build && clean-pkg-json -k unpkg"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --cache",
"vitest related --run"
]
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@pvtnbr/eslint-config": "^0.34.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.2",
"@vue/test-utils": "^1.3.5",
"clean-pkg-json": "^1.2.0",
"core-js": "^3.30.2",
"eslint": "^8.40.0",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"rollup": "^3.22.0",
"rollup-plugin-filesize": "^10.0.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vitest": "^0.31.0",
"vue": "^2.7.14",
"vue-template-compiler": "^2.7.14"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}