-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.95 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
{
"name": "nova-plus",
"version": "1.1.1",
"description": "Components Library for deep light",
"keywords": [
"code-editor",
"json-virtual-table"
],
"author": "Thales",
"license": "BSI",
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --fix",
"test": "jest",
"test:c": "jest --coverage",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"format": "prettier --write packages/",
"start": "npm run dev -s",
"dev": "vite",
"build:vite": "vite build",
"figlet": "node scripts/figlet.js",
"build": "npm run build:vite -s && npm run figlet -s true",
"major": "npm version major -m 'build: update major'",
"minor": "npm version minor -m 'build: update minor",
"patch": "npm version patch -m 'build: update patch'",
"pub:node": "node scripts/publish.js",
"pub": "npm run build:vite -s && npm run pub:node -s && npm run figlet -s",
"pub:major": "npm run major && npm run build:vite -s && npm run pub:node -s && npm run figlet -s",
"pub:minor": "npm run minor && npm run build:vite -s && npm run pub:node -s && npm run figlet -s",
"pub:patch": "npm run patch && npm run build:vite -s && npm run pub:node -s && npm run figlet -s",
"unpub": "node scripts/unpublish.js"
},
"dependencies": {
"monaco-editor": "^0.40.0",
"sortablejs": "^1.15.0",
"uuid": "^9.0.0",
"vue": "^3.3.4",
"vxe-table": "^4.3.9"
},
"devDependencies": {
"@iconify-json/ep": "^1.1.11",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/sortablejs": "^1.15.1",
"@types/uuid": "^9.0.2",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.4.0",
"consola": "^3.2.3",
"cowsay": "^1.5.0",
"element-plus": "^2.3.8",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"figlet": "^1.6.0",
"jest": "^29.6.1",
"node-sass": "^9.0.0",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"typescript": "~5.0.4",
"unplugin-auto-import": "^0.16.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"unplugin-vue-define-options": "^1.3.11",
"vite": "^4.3.9",
"vite-eslint-plugin": "^1.9.2",
"vite-plugin-compression2": "^0.10.3",
"vite-plugin-css-injected-by-js": "^3.2.1",
"vite-plugin-dts": "^3.3.1",
"vite-plugin-inspect": "^0.7.33",
"vite-plugin-style-import": "^2.0.0",
"vitest": "^0.32.0",
"vue-tsc": "^1.6.5"
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
]
}