-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.77 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
{
"name": "vue-reactive-decorator",
"type": "module",
"version": "1.2.0",
"packageManager": "pnpm@8.14.0",
"description": "Provides mobx-like reactive decorator with OOP style for Vue 2 (composition-api) and Vue 3. 提供mobx6风格的vue响应式装饰器。",
"author": "jinzhi0123 <jinzhi0123@yeah.net>",
"license": "MIT",
"homepage": "https://github.com/jinzhi0123/vue-reactive-decorator",
"repository": {
"type": "git",
"url": "git+https://github.com/jinzhi0123/vue-reactive-decorator.git"
},
"bugs": "https://github.com/jinzhi0123/vue-reactive-decorator/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"start": "node ./dist/index.cjs",
"dev": "concurrently \"pnpm watch\" \"cross-env NODE_ENV=development nodemon --watch dist --ext cjs --exec pnpm start\"",
"test": "jest",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"@vue/composition-api": "^1.7.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"tslib": "^2.6.2",
"vue-demi": "^0.14.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-replace": "^5.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.7",
"babel-plugin-dev-expression": "^0.2.3",
"bumpp": "^9.2.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"pnpm": "^8.14.0",
"rimraf": "^5.0.5",
"rollup": "^4.10.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vue": "^3.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}