-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.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
{
"name": "mobx-vue-lite",
"version": "0.3.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./nuxt": "./nuxt/module.mjs"
},
"files": [
"dist",
"nuxt"
],
"sideEffects": true,
"scripts": {
"build-fast": "tsup src/index.ts --format esm,cjs",
"build": "yarn run build-fast -- --dts-resolve",
"test": "vitest run",
"release": "bumpp --commit --push --tag && yarn publish",
"prepublishOnly": "yarn run build",
"lint": "eslint \"**/*.{ts,js}\""
},
"peerDependencies": {
"mobx": "^6.1.0",
"vue": "^3.2.0"
},
"dependencies": {
"mobx": "^6.4.2",
"vue": "^3.2.31"
},
"devDependencies": {
"@antfu/eslint-config": "0.23.0",
"@types/node": "17.0.21",
"@vue/test-utils": "2.0.0-rc.21",
"@vueuse/core": "^8.0.0",
"bumpp": "7.1.1",
"eslint": "8.15.0",
"happy-dom": "3.1.1",
"tsup": "5.12.7",
"typescript": "4.6.4",
"vitest": "0.10.5"
},
"eslintConfig": {
"extends": "@antfu"
},
"eslintIgnore": [
"dist"
]
}