-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
82 lines (82 loc) · 2.65 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
{
"name": "root",
"private": true,
"preinstall": "npx only-allow pnpm",
"author": "isboyjc",
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"postplop": "pnpm i",
"prepare": "husky",
"commit": "git add . && git-cz",
"changeset": "changeset",
"version": "changeset version",
"publish": "pnpm build && pnpm changeset publish",
"clean": "rimraf node_modules **/*/node_modules",
"eslint": "eslint . --ext .ts,.vue,.js,.tsx",
"build:play": "turbo run build --filter=playground",
"build:docs": "turbo run build --filter=docs",
"build:core": "turbo run build --filter=@isle-editor/core",
"build:vue3": "turbo run build --filter=@isle-editor/vue3",
"build:packages": "turbo run build --filter=@isle-editor/*",
"build": "turbo run build",
"dev:docs": "turbo run dev --filter=docs",
"dev:play": "turbo run dev --filter=playground",
"dev": "turbo run dev",
"turbo": "turbo",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,vue,md,sass,css}\"",
"lint:staged": "lint-staged",
"lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./"
},
"config": {
"commitizen": {
"path": "cz-git"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@vitejs/plugin-vue": "^5.1.4",
"babel-loader": "^9.2.1",
"commitizen": "^4.3.1",
"commitlint": "^19.6.0",
"cz-git": "^1.11.0",
"eslint": "^9.13.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.29.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"pnpm": "^9.14.2",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"rollup": "^4.24.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-sass": "^1.14.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.80.6",
"turbo": "^2.2.3",
"vue-eslint-parser": "^9.4.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}