generated from Clarkkkk/vite-vanilla-ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.91 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
{
"name": "vue-view-transitions",
"version": "1.2.1",
"description": "A simple way to use View Transitions API in Vue",
"license": "MIT",
"author": "Aaron Zhou",
"packageManager": "[email protected]",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"files": [
"dist"
],
"homepage": "https://github.com/Clarkkkk/vue-view-transitions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Clarkkkk/vue-view-transitions"
},
"bugs": {
"url": "https://github.com/Clarkkkk/vue-view-transitions/issues"
},
"keywords": [
"vue",
"transition",
"view transition",
"view transitions",
"view transitions api",
"page transition",
"page transitions"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./nuxt": {
"types": "./dist/nuxt/index.d.ts",
"require": "./dist/nuxt.cjs",
"import": "./dist/nuxt.js"
}
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit --watch --preserveWatchOutput",
"format": "eslint --fix --cache src/**/*.{vue,ts}",
"prepare": "husky install",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky",
"changelog": "conventional-changelog -o CHANGELOG.md -p aaron-preset -r 0",
"release": "commit-and-tag-version"
},
"peerDependencies": {
"nuxt": "^3.0.0",
"vue": "^2.6 || ^3.0.0"
},
"peerDependenciesMeta": {
"nuxt": {
"optional": true
}
},
"dependencies": {
"@nuxt/kit": "^3.7.4"
},
"devDependencies": {
"@nuxt/schema": "^3.7.4",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.32.2",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"commit-and-tag-version": "^11.2.2",
"conventional-changelog": "^4.0.0",
"conventional-changelog-aaron-preset": "^0.2.3",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.14.1",
"happy-dom": "^10.5.2",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rollup-plugin-node-externals": "^6.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.32.2",
"vue": "^3.3.4",
"vue2": "npm:[email protected]"
}
}