@kong/icons 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +161 -0
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# Kong Icons
|
package/package.json
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
{
|
2
|
+
"name": "@kong/icons",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"description": "Kong Icon Library",
|
5
|
+
"license": "Apache-2.0",
|
6
|
+
"type": "module",
|
7
|
+
"main": "./dist/kong-icons.umd.js",
|
8
|
+
"module": "./dist/kong-icons.es.js",
|
9
|
+
"files": [
|
10
|
+
"dist"
|
11
|
+
],
|
12
|
+
"types": "dist/types/index.d.ts",
|
13
|
+
"typings": "dist/types",
|
14
|
+
"exports": {
|
15
|
+
".": {
|
16
|
+
"import": "./dist/kong-icons.es.js",
|
17
|
+
"require": "./dist/kong-icons.umd.js"
|
18
|
+
},
|
19
|
+
"./package.json": "./package.json",
|
20
|
+
"./dist/*": "./dist/*"
|
21
|
+
},
|
22
|
+
"publishConfig": {
|
23
|
+
"access": "public"
|
24
|
+
},
|
25
|
+
"scripts": {
|
26
|
+
"build": "yarn stylelint && yarn lint && yarn build:components",
|
27
|
+
"build:components": "rimraf ./dist && yarn generate && yarn typecheck && vite build && rimraf ./dist/style.css && vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly && tsc-alias -p './tsconfig.build.json'",
|
28
|
+
"build:visualize": "BUILD_VISUALIZER=true rimraf ./dist && yarn generate && vite build -m production",
|
29
|
+
"generate": "ts-node -P './scripts/tsconfig.json' './scripts/generate-icon-components.ts' && yarn lint:fix:generated && yarn stylelint:fix:generated",
|
30
|
+
"dev": "USE_SANDBOX=true vite",
|
31
|
+
"test": "FORCE_COLOR=1 vitest run",
|
32
|
+
"test:open": "vitest --ui",
|
33
|
+
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
34
|
+
"lint": "eslint '**/*.{js,ts,vue}'",
|
35
|
+
"lint:fix": "eslint '**/*.{js,ts,vue}' --fix",
|
36
|
+
"lint:fix:generated": "eslint './src/components/*.vue' --fix",
|
37
|
+
"stylelint": "stylelint './src/**/*.{css,scss,vue}'",
|
38
|
+
"stylelint:fix": "stylelint './src/**/*.{css,scss,vue}' --fix",
|
39
|
+
"stylelint:fix:generated": "stylelint './src/components/*.vue' --fix",
|
40
|
+
"semantic-release": "semantic-release",
|
41
|
+
"commit": "cz"
|
42
|
+
},
|
43
|
+
"devDependencies": {
|
44
|
+
"@babel/types": "^7.22.5",
|
45
|
+
"@commitlint/cli": "^17.6.6",
|
46
|
+
"@commitlint/config-conventional": "^17.6.6",
|
47
|
+
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
|
48
|
+
"@evilmartians/lefthook": "^1.4.3",
|
49
|
+
"@kong/design-tokens": "1.3.0",
|
50
|
+
"@semantic-release/changelog": "^6.0.3",
|
51
|
+
"@semantic-release/git": "^10.0.1",
|
52
|
+
"@types/jsdom": "^21.1.1",
|
53
|
+
"@types/node": "^20.4.0",
|
54
|
+
"@types/node-emoji": "^2.1.0",
|
55
|
+
"@types/uuid": "^9.0.2",
|
56
|
+
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
57
|
+
"@typescript-eslint/parser": "^5.61.0",
|
58
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
59
|
+
"@vitest/ui": "^0.33.0",
|
60
|
+
"@vue/test-utils": "^2.4.0",
|
61
|
+
"autoprefixer": "^10.4.14",
|
62
|
+
"c8": "^8.0.0",
|
63
|
+
"cheerio": "^1.0.0-rc.12",
|
64
|
+
"commitizen": "^4.3.0",
|
65
|
+
"cz-conventional-changelog": "^3.3.0",
|
66
|
+
"eslint": "^8.44.0",
|
67
|
+
"eslint-config-standard": "^17.1.0",
|
68
|
+
"eslint-plugin-import": "^2.27.5",
|
69
|
+
"eslint-plugin-n": "^16.0.1",
|
70
|
+
"eslint-plugin-promise": "^6.1.1",
|
71
|
+
"eslint-plugin-vue": "^9.15.1",
|
72
|
+
"jsdom": "^22.1.0",
|
73
|
+
"node-emoji": "^2.1.0",
|
74
|
+
"picocolors": "^1.0.0",
|
75
|
+
"postcss-html": "^1.5.0",
|
76
|
+
"rimraf": "^5.0.1",
|
77
|
+
"rollup-plugin-visualizer": "^5.9.2",
|
78
|
+
"sass": "^1.63.6",
|
79
|
+
"semantic-release": "^21.0.7",
|
80
|
+
"stylelint": "^15.10.1",
|
81
|
+
"stylelint-config-html": "^1.1.0",
|
82
|
+
"stylelint-config-recommended-scss": "^12.0.0",
|
83
|
+
"stylelint-config-recommended-vue": "^1.4.0",
|
84
|
+
"stylelint-order": "^6.0.3",
|
85
|
+
"ts-node": "^10.9.1",
|
86
|
+
"tsc-alias": "^1.8.7",
|
87
|
+
"typescript": "^5.1.6",
|
88
|
+
"uuid": "^9.0.0",
|
89
|
+
"vite": "^4.4.1",
|
90
|
+
"vitest": "^0.33.0",
|
91
|
+
"vue": "^3.3.4",
|
92
|
+
"vue-router": "^4.2.4",
|
93
|
+
"vue-tsc": "^1.8.4"
|
94
|
+
},
|
95
|
+
"peerDependencies": {
|
96
|
+
"vue": "^3.3.4"
|
97
|
+
},
|
98
|
+
"homepage": "https://icons.konghq.com/",
|
99
|
+
"repository": {
|
100
|
+
"type": "git",
|
101
|
+
"url": "https://github.com/Kong/icons.git"
|
102
|
+
},
|
103
|
+
"author": {
|
104
|
+
"name": "Kong Inc.",
|
105
|
+
"url": "https://konghq.com/"
|
106
|
+
},
|
107
|
+
"release": {
|
108
|
+
"branches": [
|
109
|
+
"+([0-9])?(.{+([0-9]),x}).x",
|
110
|
+
"main",
|
111
|
+
"next",
|
112
|
+
"next-major",
|
113
|
+
{
|
114
|
+
"name": "beta",
|
115
|
+
"prerelease": true
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"name": "alpha",
|
119
|
+
"prerelease": true
|
120
|
+
}
|
121
|
+
],
|
122
|
+
"plugins": [
|
123
|
+
"@semantic-release/commit-analyzer",
|
124
|
+
"@semantic-release/release-notes-generator",
|
125
|
+
[
|
126
|
+
"@semantic-release/changelog",
|
127
|
+
{
|
128
|
+
"changelogFile": "CHANGELOG.md"
|
129
|
+
}
|
130
|
+
],
|
131
|
+
"@semantic-release/npm",
|
132
|
+
[
|
133
|
+
"@semantic-release/git",
|
134
|
+
{
|
135
|
+
"assets": [
|
136
|
+
"CHANGELOG.md",
|
137
|
+
"package.json"
|
138
|
+
]
|
139
|
+
}
|
140
|
+
],
|
141
|
+
"@semantic-release/github"
|
142
|
+
]
|
143
|
+
},
|
144
|
+
"engines": {
|
145
|
+
"node": ">=16.19.0"
|
146
|
+
},
|
147
|
+
"volta": {
|
148
|
+
"node": "18.16.1",
|
149
|
+
"yarn": "1.22.17"
|
150
|
+
},
|
151
|
+
"config": {
|
152
|
+
"commitizen": {
|
153
|
+
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
|
154
|
+
"skipScope": false,
|
155
|
+
"jiraOptional": true,
|
156
|
+
"jiraLocation": "post-description",
|
157
|
+
"jiraPrepend": "[",
|
158
|
+
"jiraAppend": "]"
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|