-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 993 Bytes
/
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
{
"name": "@dytesdk/vue-ui-kit",
"version": "2.2.2",
"description": "Dyte's UI Kit to support easy UI development for Vue.",
"license": "UNLICENSED",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-in/ui-kit.git"
},
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"rollup": "rollup -c",
"lint": "echo \"No lint script\"",
"lint:fix": "echo \"No lint:fix script\"",
"test": "echo \"No test script\"",
"prepublishOnly": "cp package.json package.json.bak && node prepublish.js",
"postpublish": "mv package.json.bak package.json"
},
"bugs": {
"url": "https://github.com/dyte-in/ui-kit/issues"
},
"devDependencies": {
"vue": "^3.2.36"
}
}