-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "reavue",
"version": "0.0.1",
"license": "MIT",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/revue.cjs.js",
"module": "./dist/revue.es.js",
"exports": {
".": {
"import": "./dist/revue.es.js",
"require": "./dist/revue.cjs.js"
}
},
"scripts": {
"build": "tsc --noEmit && vite build && tsc --emitDeclarationOnly",
"test": "jest",
"prepare": "husky install"
},
"peerDependencies": {
"@vue/composition-api": "^1.6.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"vue": "^2.6.14"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@testing-library/vue": "^5.8.3",
"@types/jest": "^27.5.1",
"@vue/composition-api": "^1.6.2",
"esbuild": "^0.14.42",
"esbuild-jest": "^0.5.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vue": "2.6.14",
"vue-template-compiler": "^2.6.14"
}
}