-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.49 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
{
"name": "@js-ak/excel-toolbox",
"version": "1.9.0",
"description": "excel-toolbox",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"exports": {
".": {
"types": "./build/types/index.d.ts",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
},
"./cjs": {
"require": "./build/cjs/index.js"
},
"./esm": {
"import": "./build/esm/index.js"
}
},
"files": [
"build/esm/lib",
"build/esm/index.js",
"build/esm/package.json",
"build/cjs/lib",
"build/cjs/index.js",
"build/cjs/package.json",
"build/types/lib",
"build/types/index.d.ts",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run postbuild:cjs && npm run postbuild:esm",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "eslint . --ext .ts",
"postbuild:esm": "node scripts/write-esm-package.js",
"postbuild:cjs": "node scripts/write-cjs-package.js",
"test:unit": "vitest run --config vitest.unit.config.js",
"test:integration": "vitest run --config vitest.integration.config.js",
"test": "npm run test:unit && npm run test:integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS-AK/excel-toolbox.git"
},
"keywords": [
"excel-toolbox"
],
"author": "JS-AK",
"license": "MIT",
"bugs": {
"url": "https://github.com/JS-AK/excel-toolbox/issues"
},
"homepage": "https://github.com/JS-AK/excel-toolbox#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.6",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.0",
"@stylistic/eslint-plugin-ts": "4.2.0",
"@types/node": "22.14.0",
"@vitest/coverage-v8": "3.1.2",
"eslint": "9.24.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-exports": "0.9.1",
"globals": "16.0.0",
"semantic-release": "24.0.0",
"typescript": "5.8.3",
"typescript-eslint": "8.29.0",
"vitest": "3.1.2"
}
}