-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 KB
/
package.json
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
{
"name": "fs-browsers",
"version": "2.1.1",
"description": "Usefull files functions for browsers and client side",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"files": [
"dist"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build:cjs": "tsc --outDir dist/cjs",
"build:es": "tsc -m esNext --outDir dist/esm",
"build": "shx rm -rf dist && npm run build:cjs && npm run build:es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItamarSmirra/Fs-Browsers.git"
},
"keywords": [
"javascript",
"browser",
"files",
"fs",
"export",
"download"
],
"author": "itamar-smirra",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItamarSmirra/Fs-Browsers/issues"
},
"homepage": "https://github.com/ItamarSmirra/Fs-Browsers#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/node": "^20.11.17",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"xlsx-js-style": "^1.2.0"
}
}