-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
82
83
84
85
{
"name": "@codexteam/ui",
"version": "0.2.1",
"type": "module",
"sideEffects": [
"*.css",
"*.pcss"
],
"scripts": {
"dev": "vite",
"build": "yarn build-src && yarn build-types",
"build-src": "vite build",
"build-types": "vue-tsc --declaration --emitDeclarationOnly --project tsconfig.dts.json",
"preview": "vite preview",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"format": "prettier --write --cache ."
},
"files": [
"dist"
],
"exports": {
"./vue": {
"types": "./dist/types/vue/index.d.ts",
"import": "./dist/vue.js"
},
"./styles": {
"import": "./dist/style.css"
},
"./styles/fonts": {
"import": "./dist/styles/fonts.css"
},
"./styles/themes/graphite": {
"import": "./dist/styles/themes/graphite.css"
},
"./styles/themes/crimson": {
"import": "./dist/styles/themes/crimson.css"
},
"./styles/themes/violet": {
"import": "./dist/styles/themes/violet.css"
},
"./styles/themes/grass": {
"import": "./dist/styles/themes/grass.css"
},
"./styles/themes/amber": {
"import": "./dist/styles/themes/amber.css"
},
"./styles/themes/pure": {
"import": "./dist/styles/themes/pure.css"
},
"./styles/themes/sky": {
"import": "./dist/styles/themes/sky.css"
}
},
"devDependencies": {
"@codexteam/icons": "^0.3.3",
"@editorjs/header": "^2.8.6",
"@editorjs/nested-list": "^1.4.2",
"@types/node": "^20.11.15",
"@vitejs/plugin-vue": "^5.0.3",
"@vueuse/core": "^10.9.0",
"eslint": "^9.3.0",
"eslint-config-codex": "^2.0.0",
"postcss-apply": "^0.12.0",
"postcss-hover-media-feature": "^1.0.2",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.3.0",
"tsc": "^2.0.4",
"typescript": "^5.3.3",
"typescript-eslint": "^7.9.0",
"vite": "^5.0.12",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vue-eslint-parser": "9.4.2",
"vue-router": "^4.4.0",
"vue-tsc": "latest"
},
"dependencies": {
"@codexteam/icons": "^0.3.3",
"@editorjs/editorjs": "2.30.2",
"@vueuse/core": "^10.3.0"
},
"peerDependencies": {
"vue": "^3.4.16"
}
}