-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "vue-ts-lib",
"version": "0.0.0",
"description": "Some awesome description",
"main": "dist/vue-ts-lib.cjs.js",
"unpkg": "dist/vue-ts-lib.global.js",
"jsdelivr": "dist/vue-ts-lib.global.js",
"module": "dist/vue-ts-lib.esm-bundler.js",
"types": "dist/vue-ts-lib.d.ts",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest",
"test": "yarn run test:types && yarn run test:unit --coverage && yarn run build && yarn run build:dts"
},
"files": [
"dist/*.js",
"dist/vue-ts-lib.d.ts",
"LICENSE",
"README.md"
],
"keywords": [],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.33.6",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.5",
"@size-limit/preset-small-lib": "^6.0.4",
"@sucrase/jest-plugin": "^2.2.1",
"@types/jest": "^26.0.24",
"@types/jsdom": "^21.1.6",
"@vue/test-utils": "^2.2.2",
"codecov": "^3.8.3",
"conventional-changelog-cli": "^2.2.2",
"jest": "^26.6.3",
"lint-staged": "^13.0.3",
"pascalcase": "^1.0.0",
"prettier": "^3.1.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"size-limit": "^8.1.0",
"typescript": "^4.8.4",
"vue": "^3.2.45",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js"
}
],
"peerDependencies": {
"vue": "^3.2.23"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-ts-lib.git"
},
"bugs": {
"url": "https://github.com/posva/vue-ts-lib/issues"
},
"homepage": "https://github.com/posva/vue-ts-lib#readme"
}