-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.5 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.5 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
{
"name": "pi-vditor",
"version": "3.11.2",
"description": "♏ 易于使用的 Markdown 编辑器,为适配不同的应用场景而生",
"author": "Vanessa <v@b3log.org> (http://vanessa.b3log.org)",
"jsdelivr": "dist/index.min.js",
"main": "dist/index.js",
"files": [
"dist/*",
"src/index.ts",
"src/method.ts",
"src/ts/*",
"src/assets/*"
],
"dependencies": {
"diff-match-patch": "^1.0.5"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "9.12.0",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^29.5.14",
"@types/node": "^17.0.19",
"@types/puppeteer": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.2.4",
"eslint": "^9.12.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "5.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-loader": "^5.2.0",
"prettier": "3.4.1",
"puppeteer": "^23.0.2",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^5.3.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"typescript-eslint": "^8.9.0",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint eslint.config.mjs",
"test:watch": "jest --config jest.config.cjs --watch --runInBand",
"test": "jest --config jest.config.cjs --coverage --runInBand",
"start": "webpack serve --config webpack.start.js",
"build": "webpack",
"pack:dry-run": "npm pack --dry-run",
"release:check": "npm run lint && npm test && npm run build && npm run pack:dry-run",
"publish:dry-run": "npm publish --dry-run"
},
"keywords": [
"editor",
"markdown",
"b3log"
]
}