-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1018 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1018 Bytes
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
{
"name": "NsfcReportExport",
"version": "1.5.0",
"author": {
"name": "ejfkdev"
},
"homepage": "https://github.com/ejfkdev/NsfcReportExport",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"prepare": "husky install",
"build": "NODE_ENV=production rspack build"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"image-dimensions": "^2.3.0",
"jspdf": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@rspack/cli": "1.2.3",
"@rspack/core": "1.2.3",
"@types/lodash": "^4.17.15",
"@types/node": "~22.13.4",
"chrome-types": "^0.1.342",
"husky": "~9.1.7",
"lint-staged": "~15.4.3",
"prettier": "~3.5.1",
"rimraf": "~6.0.1",
"ts-node": "^10.9.2",
"typescript": "~5.7.3"
}
}