-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "@rxts/vue",
"version": "0.0.0",
"type": "module",
"description": "Make Vue greater with RxTS.",
"repository": "[email protected]:rx-ts/vue.git",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "run-p build:*",
"build:r": "r -e named -f cjs,esm, --vue-jsx",
"build:styles": "lessc --source-map packages/vue-resizor/src/styles.less packages/vue-resizor/lib/styles.css",
"build:ts": "tsc -b",
"clean": "rimraf dist packages/*/{lib,*.tsbuildinfo}",
"docs:build": "vitepress build .",
"docs:dev": "vitepress dev . --open",
"docs:serve": "vitepress serve . --port 8000",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint . --cache",
"lint:tsc": "vue-tsc --incremental false --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/app-config": "^10.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@d-ts/vue": "^1.0.0",
"@pkgr/rollup": "^6.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.8",
"@types/qrcode": "^1.5.5",
"@types/web": "^0.0.135",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"less": "^4.2.0",
"lodash-es": "^4.17.21",
"postcss": "^8.4.33",
"qrcode": "^1.5.3",
"qrious": "^4.0.2",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"sass": "^1.70.0",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3",
"vitepress": "^1.0.0-rc.40",
"vue": "^3.4.15",
"vue-tsc": "^1.8.27",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
"prettier": "^3.2.4"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreFiles": [
"**/*.d.ts"
],
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}