forked from ueberdosis/tiptap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.69 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.69 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tiptap",
"private": true,
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18"
},
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"cz": "cz",
"start": "pnpm --prefix ./demos run start",
"dev": "pnpm run start",
"lint": "turbo run lint",
"lint:fix": "prettier -w --log-level warn . && eslint --fix --cache --quiet --no-error-on-unmatched-pattern .",
"lint:staged": "lint-staged",
"test:e2e:open": "cypress open --project tests",
"test:e2e": "cypress run --project tests",
"test:unit": "vitest run",
"test:unit:dev": "vitest",
"test": "turbo run build && pnpm run test:e2e && pnpm run test:unit",
"build": "turbo build",
"build:demos": "pnpm --prefix demos run build:demos",
"serve": "pnpm run build:demos && http-server ./demos/dist -s -p 3000",
"build:ci": "turbo run build",
"publish": "pnpm run build && pnpm changeset publish",
"clean:packages": "rm -rf ./packages/*/dist && rm -rf ./packages/pm/*/dist && rm -rf ./packages-deprecated/*/dist",
"clean:packs": "rm -rf ./packages/*/*.tgz && rm -rf ./packages-deprecated/*/*.tgz",
"make:demo": "sh ./scripts/make-demo.sh",
"reset": "pnpm run clean:packages && pnpm run clean:packs && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./package-lock.json && pnpm install",
"prepare": "husky install",
"turbo": "turbo",
"changeset": "changeset",
"changelog": "node ./scripts/aggregate-changeset.js",
"version": "pnpm run changelog && pnpm run changeset -- version && pnpm install --no-frozen-lockfile",
"publish:markdown": "pnpm run build && pnpm changeset publish --tag markdown",
"version:markdown": "pnpm run changeset version --snapshot markdown"
},
"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.26.3",
"@changesets/cli": "^2.27.11",
"@changesets/get-release-plan": "^4.0.13",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@testing-library/react": "16.2.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/ui": "^4.0.7",
"babel-loader": "^9.2.1",
"cypress": "^15.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^9.32.0",
"fast-glob": "^3.3.2",
"happy-dom": "^20.0.2",
"http-server": "14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.3.0",
"lowlight": "^3.3.0",
"minimist": "^1.2.8",
"pkg-pr-new": "0.0.32",
"prettier": "3.3.3",
"react": "^19.0.0",
"tinyglobby": "0.2.10",
"ts-loader": "9.3.1",
"tsup": "^8.3.5",
"turbo": "2.3.3",
"typescript": "^5.7.3",
"vitest": "^4.0.7",
"webpack": "^5.97.1"
},
"overrides": {
"@rollup/pluginutils": "^5.1.4"
},
"publishConfig": {
"provenance": true
},
"lint-staged": {
"./**/*.{ts,tsx,js,jsx,vue}": [
"prettier --write",
"eslint --fix --quiet --no-error-on-unmatched-pattern"
]
},
"pnpm": {
"patchedDependencies": {
"@changesets/assemble-release-plan": "patches/@changesets__assemble-release-plan.patch"
}
}
}