-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "exceljs-xlsx-template",
"type": "module",
"version": "3.0.1",
"private": false,
"description": "Generate .xlsx file from .xlsx template. Support for Browser and Node.js",
"author": {
"name": "cshaptx4869",
"email": "994774638@qq.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cshaptx4869/exceljs-xlsx-template.git"
},
"keywords": [
"exceljs",
"xlsx",
"template",
"xlsx-template"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"CHANGELOG.md",
"dist"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build",
"lint": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "node test/test.js",
"release:patch": "npm version patch -m \"chore(release): %s\"",
"release:minor": "npm version minor -m \"feat(release): %s\"",
"release:major": "npm version major -m \"feat(release)! : breaking change %s\"",
"prepare": "husky"
},
"dependencies": {
"exceljs": "^4.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.1.0",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-plugin-format": "^1.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"rollup": "^4.52.5",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}