-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.62 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.62 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
{
"name": "@gomarky/markybox-core",
"version": "1.0.7",
"publishConfig": {
"tag": "latest",
"access": "public"
},
"private": false,
"license": "MIT",
"types": "lib/types",
"main": "lib/index.cjs.js",
"unpkg": "lib/index.es.js",
"module": "lib/index.cjs.js",
"maintainers": [
{
"name": "Andrew Slesarenko",
"email": "swen295@gmail.com",
"web": "https://swen.tech"
}
],
"scripts": {
"lint": "run-s -csn lint:eslint lint:stylelint",
"fix": "run-s -csn fix:eslint fix:stylelint",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"lint:eslint": "eslint --ext .ts,.js,.vue .",
"fix:eslint": "eslint --ext .ts,.js,.vue . --fix",
"lint:stylelint": "stylelint ./**/*.vue ./**/*.[s]css",
"fix:stylelint": "stylelint ./**/*.vue ./**/*.[s]css --fix",
"build:devtool": "vite build --config config/devtool/vite.config.devtool.native.ts",
"build:editor": "vite build --config config/editor/vite.config.editor.native.ts",
"dev": "vite --config config/devtool/vite.config.devtool.native.ts",
"lib": "vite build --config config/editor/vite.config.editor.lib.native.ts"
},
"engines": {
"yarn": "please-use-npm"
},
"dependencies": {
"@gomarky/window-shortcut": "^1.0.29",
"date-fns": "^2.29.3",
"nanoid": "^4.0.0",
"reset.css": "^2.0.2",
"vite-plugin-checker": "^0.4.6",
"vue": "^3.2.33",
"vue-router": "^4.0.14",
"vue-tsc": "^0.40.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.4.0",
"@types/ejs": "^3.1.0",
"@types/eslint": "^8.4.1",
"@types/html-minifier-terser": "^6.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vitejs/plugin-legacy": "^1.7.1",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^9.1.1",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss-html": "^1.5.0",
"sass": "^1.51.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"ttypescript": "1.5.13",
"typescript": "^4.6.3",
"typescript-transform-paths": "3.4.3",
"vite": "^2.9.5",
"vite-plugin-eslint": "^1.6.0",
"vite-svg-loader": "^3.3.0"
}
}