-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"author": "3YOURMIND GmbH",
"bugs": {
"url": "https://github.com/3YOURMIND/kotti/issues"
},
"dependencies": {
"@3yourmind/vue-use-tippy": "3.x",
"@3yourmind/yoco": "^2.9.0",
"@metatypes/typography": "^0.5.0",
"@tanstack/table-core": "^8.20.5",
"big.js": "^6.2.1",
"classnames": "^2.5.1",
"core-js": "3.6.5",
"dayjs": "1.x",
"deepmerge": "^4.3.1",
"element-ui": "2.13.1",
"filesize": "^10.1.0",
"lodash": "4.x",
"nanoid": "3.x",
"normalize.css": "^8.0.1",
"shortid": "^2.2.15",
"tippy.js": "6.x",
"zod": "3.22.5"
},
"description": "Kotti Vue Component UI",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@types/big.js": "^6.2.2",
"@types/lodash": "4.x",
"@types/shortid": "^0.0.32",
"@vitejs/plugin-vue2": "*",
"@vue/test-utils": "1.x",
"color": "^4.2.3",
"jsdom": "^24.0.0",
"postcss-preset-env": "^9.5.9",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.70.0",
"vite": "^5.2.11",
"vite-plugin-static-copy": "^1.0.4",
"vitest": "^1.6.0",
"vue": "^2.7",
"vue-template-compiler": "^2.7",
"vue-tsc": "^1.8.22"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/kotti-ui.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/kotti-ui.cjs"
}
},
"./dist/style.css": {
"style": "./dist/style.css"
},
"./dist/variables.scss": {
"style": "./dist/variables.scss"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/3YOURMIND/kotti#readme",
"license": "MIT",
"main": "./dist/kotti-ui.cjs",
"module": "./dist/kotti-ui.js",
"name": "@3yourmind/kotti-ui",
"peerDependencies": {
"core-js": "*",
"vue": "^2.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3YOURMIND/kotti.git"
},
"scripts": {
"build:tokens": "node tokens/generate.js && prettier --write source/kotti-style/tokens.css",
"build:vite": "vite build",
"build:vue-tsc": "./scripts/build-vue-tsc.sh",
"check:eslint": "eslint --max-warnings=0 .",
"check:prettier": "yarn --cwd ../.. run prettier --check --ignore-path=.gitignore ./packages/kotti-ui",
"check:publint": "publint",
"check:stylelint": "stylelint 'source/**/*.{css,scss,vue}'",
"fix:eslint": "yarn run check:eslint --fix",
"fix:prettier": "yarn run check:prettier --write",
"fix:stylelint": "yarn run check:stylelint --fix",
"publish-package": "yarn publish --no-git-tag-version --verbose --non-interactive --access public",
"tarball": "npm pack && mkdir -p ../../tarballs && mv *.tgz ../../tarballs/kotti-ui.tar.gz",
"test": "vitest --run --typecheck",
"watch": "vite build --watch"
},
"sideEffects": [
"./dist/style.css"
],
"style": "./dist/style.css",
"type": "module",
"types": "./dist/index.d.ts",
"version": "8.3.1"
}