-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "da-collab",
"version": "1.1.0",
"description": "",
"main": "src/edge.js",
"type": "module",
"scripts": {
"lint:js": "eslint test src",
"lint": "npm run lint:js",
"dev": "wrangler dev -e dev src/edge.js",
"deploy:ci": "node prepare-deploy.js && wrangler deploy -e ci -c wrangler-versioned.toml",
"deploy:prod": "node prepare-deploy.js && wrangler deploy -e production -c wrangler-versioned.toml",
"deploy:stage": "node prepare-deploy.js && wrangler deploy -e stage -c wrangler-versioned.toml",
"test": "c8 mocha --inline-diffs --exit # --exit is needed because some test code triggers async listeners",
"test:it": "echo 'todo'",
"test:postdeploy": "echo 'todo'",
"prepare": "husky",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --no-ci --branches $CI_BRANCH"
},
"mocha": {
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.15",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"eslint": "9.4.0",
"esmock": "2.7.3",
"graceful-fs": "4.2.11",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"mocha": "^10.2.0",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"semantic-release": "25.0.2",
"semantic-release-slack-bot": "4.0.2",
"wrangler": "4.33.2"
},
"dependencies": {
"@cloudflare/workers-types": "4.20251126.0",
"hast-util-from-html": "2.0.3",
"hast-util-select": "6.0.4",
"lib0": "0.2.114",
"lodash": "4.17.21",
"prosemirror-model": "1.25.4",
"prosemirror-schema-basic": "1.2.4",
"prosemirror-schema-list": "1.5.1",
"prosemirror-state": "1.4.4",
"prosemirror-tables": "1.8.1",
"ws": "6.2.3",
"y-prosemirror": "1.3.7",
"y-protocols": "1.0.6",
"yjs": "13.6.27"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}