forked from ueberdosis/hocuspocus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.77 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
{
"private": true,
"workspaces": ["playground/*", "packages/*", "tests"],
"browserslist": ["defaults", "not IE 11", "maintained node versions"],
"type": "module",
"ava": {
"files": ["tests/**/*", "!tests/utils/**/*", "!database/**/*"],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--conditions=source",
"--experimental-transform-types",
"--experimental-specifier-resolution=node"
],
"workerThreads": false
},
"scripts": {
"start": "npm run playground",
"playground": "npm run playground:default",
"playground:load-document": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/load-document.ts\"",
"playground:express": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/express.ts\"",
"playground:koa": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/koa.ts\"",
"playground:default": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/default.ts\"",
"playground:slow": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/slow.ts\"",
"playground:redis": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/redis.ts\"",
"playground:webhook": "concurrently --kill-others \"npm --prefix ./playground/frontend run dev\" \"npm --prefix ./playground/backend run dev src/webhook.ts\"",
"lint:ts": "tsc --noEmit -p tsconfig.json --composite false",
"lint": "biome && npm run lint:ts",
"lint:fix": "biome --fix",
"test": "ava",
"test:watch": "ava --watch",
"build:packages": "npm run clean:packages && rollup -c",
"build:watch": "npm run clean:packages && rollup -wc",
"clean:packages": "rm -Rf ./packages/*/dist",
"release:major": "npm_config_legacy_peer_deps=false lerna version major --force-publish",
"release:major:pre": "npm_config_legacy_peer_deps=false lerna version premajor --force-publish --preid rc",
"release:minor": "npm_config_legacy_peer_deps=false lerna version minor --force-publish",
"release:minor:pre": "npm_config_legacy_peer_deps=false lerna version preminor --force-publish --preid rc",
"release:patch": "npm_config_legacy_peer_deps=false lerna version patch --force-publish",
"release:patch:pre": "npm_config_legacy_peer_deps=false lerna version prepatch --force-publish --preid rc",
"release:pre": "npm_config_legacy_peer_deps=false lerna version prerelease --force-publish --preid rc",
"publish": "npm run build:packages && lerna exec --since --no-private -- npm publish --access public",
"publish:pre": "npm run build:packages && lerna exec --since --no-private -- npm publish --tag next --access public",
"reset": "npm run clean:packages && rm -Rf ./**/.cache && rm -Rf ./**/.temp && rm -Rf ./**/node_modules && rm -Rf ./package-lock.json && npm install",
"ncu": "ncu -i --deep && npm install"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@babel/core": "7.18.6",
"@babel/preset-env": "^7.16.11",
"@biomejs/biome": "1.9.4",
"@lerna/batch-packages": "^3.16.0",
"@lerna/filter-packages": "^4.0.0",
"@lerna/project": "^5.5.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"ava": "^4.3.3",
"concurrently": "^6.4.0",
"lerna": "^8.2.1",
"minimist": "^1.2.5",
"rollup": "^4.37.0",
"rollup-plugin-auto-external": "^2.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"typescript": "5.8.2"
},
"engines": {
"node": ">=22"
},
"name": "hocuspocus"
}