forked from LuisEnMarroquin/json-as-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.26 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.26 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "easy-spreadsheet-write",
"type": "module",
"version": "3.0.4",
"packageManager": "pnpm@10.12.4",
"description": "Easily create spreadsheet files, json to xlsx.",
"author": "NamesMT <dangquoctrung123@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/namesmt/easy-spreadsheet-write#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/namesmt/easy-spreadsheet-write.git"
},
"bugs": "https://github.com/namesmt/easy-spreadsheet-write/issues",
"keywords": [
"json",
"xlsx",
"excel",
"sheet",
"spreadsheet",
"create",
"generation",
"excel",
"xlsx",
"ods",
"fods",
"csv",
"dsv",
"sheetjs"
],
"sideEffects": false,
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"source": "./src/index.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"lint": "eslint .",
"test": "vitest",
"test:types": "tsc --noEmit",
"quickcheck": "pnpm run lint && pnpm run test:types",
"check": "pnpm run lint && pnpm run test:types && vitest run --coverage",
"stub": "obuild --stub",
"build": "obuild",
"prerelease": "pnpm run check",
"release": "pnpm dlx changelogen@latest --release --push --publish",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@e965/xlsx": "^0.20.3"
},
"peerDependenciesMeta": {
"@e965/xlsx": {
"optional": false
}
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@namesmt/utils": "^0.5.16",
"@types/node": "^22.16.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"lint-staged": "^16.1.2",
"obuild": "^0.2.1",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39"
},
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks",
"unrs-resolver"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}