-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@potjs/vue-layout",
"version": "0.0.4",
"license": "MIT",
"author": "Anguer",
"files": [
"dist",
"src"
],
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf dist && run-s build-bundle rollup-types",
"build-bundle": "rollup -c",
"build-types": "tsc -p tsconfig.type.json --outDir temp && api-extractor run && rimraf temp",
"rollup-types": "tsc -p tsconfig.type.json --outDir dist",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . --lerna-package vue-layout",
"release": "node ../../scripts/release.js"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/potjs/pot.git",
"directory": "packages/vue-layout"
},
"bugs": {
"url": "https://github.com/potjs/pot/issues"
},
"homepage": "https://github.com/potjs/pot/tree/master/packages/vue-layout#readme",
"devDependencies": {
"vue": "^3.2.22"
},
"dependencies": {
"@potjs/vue-popper": "workspace:*"
}
}