-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.42 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vue-cookie-next",
"version": "1.3.0",
"description": "A simple Vue.js plugin for handling browser cookies",
"main": "dist/vue-cookie-next.cjs.js",
"browser": "dist/vue-cookie-next.esm.js",
"unpkg": "dist/vue-cookie-next.global.js",
"jsdelivr": "dist/vue-cookie-next.global.js",
"module": "dist/vue-cookie-next.esm-bundler.js",
"types": "dist/vue-cookie-next.d.ts",
"sideEffects": false,
"files": [
"dist/*.js",
"dist/vue-cookie-next.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "vite serve",
"start": "vite serve --mode production",
"demo:build": "vite build",
"release": "bash scripts/release.sh",
"build:dts": "api-extractor run --local --verbose && tail -n +3 src/globalExtensions.ts >> dist/vue-cookie-next.d.ts",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anish2690/vue-cookie-next.git"
},
"keywords": [
"typescript",
"javascript",
"vue",
"cookie",
"cookies",
"vue-cookie-next",
"vue-cookie-next",
"browser",
"session"
],
"author": {
"name": "Anish George",
"email": "anishgeorge2690@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anish2690/vue-cookie-next/issues"
},
"homepage": "https://github.com/anish2690/vue-cookie-next#readme",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@microsoft/api-extractor": "^7.9.3",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@size-limit/preset-small-lib": "^4.5.5",
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.1.4",
"conventional-changelog-cli": "^2.0.34",
"pascalcase": "^1.0.0",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7",
"vite": "^2.4.1",
"vue": "^3.1.4"
},
"peerDependencies": {
"vue": "^3.1.4"
}
}