-
-
Notifications
You must be signed in to change notification settings - Fork 459
/
Copy pathpackage.json
80 lines (80 loc) · 2.86 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
{
"name": "blocksuite",
"private": true,
"type": "commonjs",
"engines": {
"node": ">=18.19.0 <23.0.0"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/**/*",
"docs"
],
"scripts": {
"preview": "yarn workspace @blocksuite/playground preview",
"dev": "yarn workspace @blocksuite/playground dev",
"dev:docs": "yarn workspace @blocksuite/docs dev",
"lint:format": "prettier . --check",
"format": "prettier . --write",
"build": "tsc -b tsconfig.json --verbose",
"build:packages": "yarn workspace @blocksuite/affine build",
"build:playground": "yarn workspace @blocksuite/playground build",
"build:docs": "yarn workspace @blocksuite/docs build",
"ci:version": "changeset version && yarn install --no-frozen-lockfile",
"ci:publish": "yarn build:packages && yarn workspaces foreach -Ap --no-private npm publish --tolerate-republish --access public --tag latest",
"ci:version:canary": "changeset version --snapshot canary && yarn install --no-frozen-lockfile",
"ci:publish:canary": "yarn build:packages && yarn workspaces foreach -Ap --no-private npm publish --access public --tag canary",
"postinstall": "husky",
"changeset": "changeset && node scripts/changelog.mjs"
},
"lint-staged": {
"!packages/**/*": [
"yarn exec prettier --write -u --cache"
]
},
"keywords": [],
"author": "toeverything",
"license": "MPL-2.0",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@open-wc/dev-server-hmr": "^0.2.0",
"@playwright/test": "^1.51.1",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^22.13.10",
"es-module-lexer": "^1.5.4",
"esbuild": "^0.25.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"micromatch": "^4.0.7",
"prettier": "^3.3.3",
"simple-git": "^3.25.0",
"size-limit": "^11.1.4",
"tsx": "^4.19.0",
"typescript": "5.8.2",
"vite": "6.2.6",
"vite-plugin-web-components-hmr": "^0.1.3"
},
"stackblitz": {
"startCommand": "yarn run dev"
},
"resolutions": {
"deep-equal": "npm:@nolyfill/deep-equal@^1",
"function-bind": "npm:@nolyfill/function-bind@^1",
"gopd": "npm:@nolyfill/gopd@^1",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@^1",
"has-proto": "npm:@nolyfill/has-proto@^1",
"has-symbols": "npm:@nolyfill/has-symbols@^1",
"has-tostringtag": "npm:@nolyfill/has-tostringtag@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"set-function-length": "npm:@nolyfill/set-function-length@^1",
"side-channel": "npm:@nolyfill/side-channel@^1"
},
"dependencies": {
"@size-limit/esbuild-why": "^11.1.5"
}
}