-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "vue-meteor-tracker",
"version": "3.0.0-beta.7",
"description": "Use Meteor Tracker reactivity inside Vue components",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"engines": {
"node": ">14.5.0"
},
"scripts": {
"build": "rimraf dist && tsc -d",
"watch": "tsc -d -w --sourceMap",
"prepublishOnly": "pnpm run test && pnpm run build",
"test": "pnpm run test:eslint",
"test:eslint": "eslint --ext .js,.ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meteor-vue/vue-meteor-tracker.git"
},
"keywords": [
"vue",
"meteor",
"integration",
"tracker",
"reactivity"
],
"author": "Guillaume CHAU",
"license": "MIT",
"bugs": {
"url": "https://github.com/meteor-vue/vue-meteor-tracker/issues"
},
"homepage": "https://github.com/meteor-vue/vue-meteor-tracker#readme",
"dependencies": {
},
"peerDependencies": {
"vue": "^2.7.0 || ^3.0.0"
},
"devDependencies": {
"@types/meteor": "^1.4.87",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.2",
"vue": "^3.2.38"
}
}