-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"author": "XeryYue",
"main": "index.js",
"npmClient": "yarn",
"useWorkspaces": true,
"workspaces": [
"packages/*",
"internal"
],
"license": "MIT",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"preinstall": "node scripts/preinstall.js",
"dev:site": "vite",
"update:icon": "ts-node scripts/source.ts",
"build:site": "vite build",
"build:hook": "ts-node scripts/build.ts hooks",
"build:lib": "ts-node scripts/build.ts core",
"build:icon": "ts-node scripts/icon.ts && ts-node scripts/build.ts icons",
"test": "yarn workspace @fect-ui/vue test",
"lint": "eslint \"{internal,packages}/**/*.{js,ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/clean-css": "^4.2.5",
"@types/jest": "^28.1.3",
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.10.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitejs/plugin-vue": "^3.0.3",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/test-utils": "^2.0.0-rc.16",
"@yankeeinlondon/builder-api": "^0.4.1",
"autoprefixer": "^10.4.2",
"babel-jest": "26.6.3",
"clean-css": "^5.2.4",
"es-module-lexer": "^0.9.3",
"eslint": "^8.19.0",
"eslint-config-kagura": "^1.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^7.19.1",
"happy-dom": "^6.0.4",
"internal": "workspace:*",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"less": "^4.1.2",
"nanospinner": "^1.1.0",
"no-bump": "^0.6.1",
"postcss": "^8.4.16",
"prettier": "^2.4.1",
"prismjs": "^1.23.0",
"svgo": "3.0.2",
"swc-plugin-vue-jsx": "^0.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-cdn2": "^0.3.3",
"vite-plugin-md": "^0.20.2",
"vue": "^3.2.45",
"vue-jest": "^5.0.0-alpha.10",
"vue-router": "^4.0.8"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"packageManager": "yarn@3.3.0"
}