This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
{
"name": "@agile-ts/vue",
"version": "0.1.6",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
"description": "Extension to combine Agile with Vue",
"keywords": [
"agile",
"agile-ts",
"vue-component",
"vue",
"vuejs",
"reactive"
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "shx rm -rf dist && rollup --c rollup.config.js",
"dev:publish": "yalc publish",
"dev:push": "yalc push",
"watch:push": "tsc-watch --onSuccess \"yarn run dev:push\"",
"watch": "shx rm -rf dist && tsc -w",
"release:prepare": "yarn run build",
"release:manual": "yarn run release:prepare && npm publish",
"pack": "npm pack",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*",
"install:clean": "shx rm -rf dist && shx rm -rf node_modules && yarn install"
},
"devDependencies": {
"@agile-ts/core": "file:../core",
"@vue/cli": "^4.5.12",
"vue": "^2.6.12"
},
"peerDependencies": {
"@agile-ts/core": "^0.2.8",
"vue": "^2.6.12"
},
"peerDependenciesMeta": {
"vue": {
"optional": false
},
"agile-ts/core": {
"optional": false
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/agile-ts/agile.git"
},
"bugs": {
"url": "https://github.com/agile-ts/agile/issues"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"sideEffects": false
}