-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "lakelib",
"version": "0.2.6",
"description": "Lake is a browser-based rich text editor designed for creating content like blogs, comments, and emails.",
"keywords": [
"rich text",
"wysiwyg",
"editor"
],
"homepage": "http://lakejs.org",
"bugs": {
"url": "https://github.com/lakejs/lake/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lakejs/lake.git"
},
"license": "MIT",
"author": "Luo Longhao <[email protected]>",
"main": "./lib/lake.js",
"types": "./lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"dev": "npm-run-all --parallel --print-label dev:express dev:rollup",
"dev:express": "node ./scripts/start-server.mjs",
"dev:rollup": "rollup --watch --config rollup.config.mjs --example --test",
"dev:lib": "rollup --watch --config rollup.config.mjs --es",
"build": "rimraf ./dist ./lib && rollup --config rollup.config.mjs --iife --es",
"i18n": "typesafe-i18n --no-watch",
"sort:package": "sort-package-json",
"lint": "eslint . --config .eslintrc.cjs --ext \".ts,.js,.cjs,.mjs\"",
"test": "node ./scripts/run-tests.mjs",
"test:express": "node ./scripts/start-server.mjs 8081",
"test:rollup": "rollup --config rollup.config.mjs --test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node ./scripts/release.mjs"
},
"simple-git-hooks": {
"pre-commit": "pnpm sort:package && pnpm lint",
"commit-msg": "node ./scripts/verify-commit.mjs"
},
"dependencies": {
"@types/is-hotkey": "^0.1.10",
"debounce": "^2.2.0",
"eventemitter3": "^5.0.1",
"fast-deep-equal": "^3.1.3",
"is-hotkey": "^0.2.0",
"photoswipe": "^5.4.4",
"typesafe-i18n": "^5.26.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.5.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.5.1",
"express": "^4.21.1",
"katex": "^0.16.11",
"lake-codemirror": "^2.0.0",
"mocha": "^10.8.2",
"multer": "1.4.5-lts.1",
"npm-run-all2": "^7.0.1",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"puppeteer": "^23.6.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.3",
"rollup-plugin-import-css": "^3.5.6",
"rollup-plugin-svg-import": "^3.0.0",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"sinon": "^19.0.2",
"sort-package-json": "^2.10.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"wait-on": "^8.0.1"
},
"packageManager": "[email protected]"
}