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
92 lines (92 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.48 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
{
"name": "tiptap",
"private": true,
"publishConfig": {
"provenance": true
},
"scripts": {
"cz": "cz",
"start": "vp run --filter ./demos start",
"dev": "vp run start",
"check": "vp run format && vp run lint",
"check:fix": "vp run format:fix && vp run lint:fix",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:staged": "vp staged",
"fallow": "fallow",
"fallow:audit": "fallow audit",
"fallow:health": "fallow health --score --targets",
"test:unit": "vp test",
"test:unit:dev": "vp test --watch",
"test:e2e": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:all": "playwright test",
"test:e2e:open": "playwright test --ui --project=chromium",
"test:e2e:open:firefox": "playwright test --ui --project=firefox",
"test:e2e:open:all": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"test:publish-config": "node --test .github/scripts/__tests__/*.test.mjs",
"check:package-exports": "node scripts/check-package-exports.mjs",
"test": "vp run -r build && vp run test:unit",
"build": "vp run -r build",
"build:demos": "vp run --filter ./demos --fail-if-no-match build:demos",
"serve": "vp run build:demos && http-server ./demos/dist -s -p 3000",
"build:ci": "vp run -r build",
"publish": "vp run build && vp exec 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": "vp run clean:packages && vp run clean:packs && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./package-lock.json && pnpm install",
"prepare": "vp config --no-agent",
"changeset": "changeset",
"changelog": "node ./scripts/aggregate-changeset.js",
"version": "vp run changelog && vp run changeset -- version && pnpm install --no-frozen-lockfile",
"publish:markdown": "vp run build && vp exec changeset publish --tag markdown",
"version:markdown": "vp run changeset version --snapshot markdown"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@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/changelog-github": "^0.6.0",
"@changesets/cli": "^2.27.11",
"@changesets/get-release-plan": "^4.0.13",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@playwright/test": "^1.54.2",
"@testing-library/react": "16.2.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"babel-loader": "^9.2.1",
"cz-conventional-changelog": "^3.3.0",
"fallow": "^2.98.0",
"fast-glob": "^3.3.2",
"happy-dom": "^20.8.9",
"http-server": "14.1.1",
"lowlight": "^3.3.0",
"minimist": "^1.2.8",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"pkg-pr-new": "0.0.66",
"react": "^19.0.0",
"tinyglobby": "0.2.10",
"ts-loader": "9.3.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"vite": "catalog:",
"vite-plus": "catalog:",
"webpack": "^5.97.1"
},
"browserslist": [
"defaults",
"not IE 11"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.2.2"
}