-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
136 lines (136 loc) Β· 3.17 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@leonardssh/use-lanyard",
"version": "1.0.4",
"description": "π Lanyard with Composition API for Vue",
"author": "LeonardSSH <[email protected]> (https://leonard.sh)",
"license": "MIT",
"main": "dist/use-lanyard.cjs.js",
"module": "dist/use-lanyard.esm-bundler.js",
"types": "dist/use-lanyard.d.ts",
"unpkg": "dist/use-lanyard.global.js",
"jsdelivr": "dist/use-lanyard.global.js",
"exports": {
".": {
"import": "./dist/use-lanyard.esm-bundler.js",
"require": "./dist/use-lanyard.cjs.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist/*.js",
"dist/use-lanyard.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"composition",
"api",
"setup",
"typed",
"typescript",
"ts",
"type",
"safe",
"lanyard"
],
"scripts": {
"clean": "node scripts/clean-dist.mjs",
"clean:types": "rm -rf types",
"build": "pnpm clean && rollup -c && pnpm build:types && pnpm build:dts && pnpm clean:types",
"build:types": "tsc --emitDeclarationOnly",
"build:dts": "api-extractor run --local --verbose",
"prepare": "husky install .github/husky",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src --ext js,ts --fix",
"commit": "git-cz",
"cz": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@microsoft/api-extractor": "^7.18.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"pascalcase": "^1.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"vue": "^3.2.2"
},
"dependencies": {
"@vueuse/core": "^5.3.0",
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"endOfLine": "lf",
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": true,
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 80,
"overrides": [
{
"files": [
"*.yml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
},
"homepage": "https://github.com/LeonardSSH/use-lanyard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LeonardSSH/use-lanyard.git"
},
"bugs": {
"url": "https://github.com/LeonardSSH/use-lanyard/issues"
},
"publishConfig": {
"access": "public"
},
"private": false
}