-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.92 KB
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
{
"name": "@kocdigital/vue-cli-plugin-sf",
"version": "0.0.1",
"license": "UNLICENSED",
"description": "Koç Digital Platform360 Safe Frame Vue CLI Plugin",
"homepage": "https://github.com/kocdigital/vue-cli-plugin-sf#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kocdigital/vue-cli-plugin-sf.git"
},
"bugs": {
"url": "https://github.com/kocdigital/vue-cli-plugin-sf/issues"
},
"keywords": [
"kocdigital",
"p360",
"platform360",
"sf",
"safe-frame",
"vue-cli",
"vue-cli-plugin",
"vue-cli-plugin-sf"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"require": "./dist/config.js"
},
"./*": "./*"
},
"main": "dist/index.js",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "tsup",
"dev": "tsup --watch src",
"lint": "eslint ."
},
"peerDependencies": {
"@kocdigital/sf-pagewrapper": "^1.0.1",
"@vue/cli-service": "^4.5.0"
},
"dependencies": {
"@vue/cli-shared-utils": "^4.5.0",
"adm-zip": "^0.5.14"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@kocdigital/eslint-plugin": "git+https://github.com/kocdigital/kd-vue-lintrules.git",
"@kocdigital/sf-pagewrapper": "^1.0.1",
"@rushstack/eslint-patch": "^1.2.0",
"@types/adm-zip": "^0.5.5",
"@types/node": "~16.18.98",
"@vue/cli-service": "^4.5.0",
"eslint": "^8.24.0",
"husky": "^8.0.3",
"tsup": "~6.7.0",
"typescript": "^5.3.2"
},
"engines": {
"node": "16.x"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}