-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
{
"author": "3YOURMIND GmbH",
"bugs": {
"url": "https://github.com/3YOURMIND/kotti/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Junyu Pu"
},
{
"email": "[email protected]",
"name": "Florian Wendelborn",
"url": "https://hello.dodekeract.com/npm/@3yourmind/yoco"
}
],
"dependencies": {
"zod": "3.22.5"
},
"description": "3YOURMIND Icon Font",
"devDependencies": {
"icon-font-buildr": "^1.4.2"
},
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./style.css": {
"style": "./style.css"
},
"./svg/*": "./svg/*"
},
"files": [
"fonts",
"dist/**/!(*.tsbuildinfo)",
"svg",
"style.css"
],
"homepage": "https://3yourmind.github.io/kotti/foundations/icons",
"keywords": [
"icon",
"font"
],
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/mjs/index.js",
"name": "@3yourmind/yoco",
"repository": {
"type": "git",
"url": "git+https://github.com/3YOURMIND/kotti.git"
},
"scripts": {
"build": "./scripts/build.sh",
"check:eslint": "eslint --max-warnings=0 .",
"check:prettier": "yarn --cwd ../.. run prettier --check --ignore-path=.gitignore ./packages/yoco",
"check:publint": "publint",
"check:stylelint": "stylelint style.css",
"fix:eslint": "yarn run check:eslint --fix",
"fix:prettier": "yarn run check:prettier --write",
"publish-package": "yarn publish --no-git-tag-version --verbose --non-interactive --access public",
"tarball": "npm pack && mkdir -p ../../tarballs && mv *.tgz ../../tarballs/yoco.tar.gz"
},
"style": "./style.css",
"type": "module",
"types": "./dist/mjs/index.d.ts",
"version": "2.11.0"
}