-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.36 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.36 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
{
"name": "plugin-sample",
"version": "0.4.7",
"description": "This is a sample plugin for SiYuan (https://b3log.org/siyuan)",
"main": ".src/index.js",
"scripts": {
"format": "dprint fmt",
"format:check": "dprint check",
"lint": "eslint . --fix --cache",
"dev": "run-p dev:kernel dev:app",
"dev:app": "webpack --config webpack.config.js --mode development",
"dev:kernel": "webpack --config webpack.kernel.config.js --mode development",
"build": "run-s build:kernel build:app",
"build:app": "webpack --config webpack.config.js --mode production",
"build:kernel": "webpack --config webpack.kernel.config.js --mode production"
},
"keywords": [],
"author": "Vanessa",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"dprint": "latest",
"esbuild-loader": "^4.4.3",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"mini-css-extract-plugin": "^2.10.2",
"npm-run-all": "^4.1.5",
"sass": "^1.99.0",
"sass-loader": "^16.0.8",
"siyuan": "1.2.2-alpha.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"zip-webpack-plugin": "^4.0.3"
}
}