diff --git a/README.md b/README.md index e5c862e..89389c0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,12 @@ Parser and writer for various spreadsheet formats. Pure-JS cleanroom implementation from official specifications and related documents. +**NOTE:** This project is a fork of the original (and awesome) [SheetJS/xlsx](https://github.com/SheetJS/js-xlsx) project. +It is extended to enable cell formats to be read from and written to .xlsx workbooks. +The intent is to provide a temporary means of using these features in practice, and ultimately to merge this into the primary project. +Report any issues to https://github.com/protobi/js-xlsx/issues. + + Supported read formats: - Excel 2007+ XML Formats (XLSX/XLSM) @@ -24,10 +30,10 @@ Source: ## Installation -With [npm](https://www.npmjs.org/package/xlsx): +With [npm](https://www.npmjs.org/package/xlsx-style): ```sh -npm install xlsx --save +npm install xlsx-style --save ``` In the browser: diff --git a/bower.json b/bower.json index aec35a9..f9183a7 100644 --- a/bower.json +++ b/bower.json @@ -1,8 +1,8 @@ { - "name": "js-xlsx", - "homepage": "https://github.com/SheetJS/js-xlsx", + "name": "js-xlsx-style", + "homepage": "https://github.com/protobi/js-xlsx", "main": "dist/xlsx.js", - "version": "0.8.0", + "version": "0.8.2", "ignore": [ "bin", "bits", diff --git a/package.json b/package.json index 9e9f484..cef80aa 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,14 @@ "name": "xlsx-style", "version": "0.8.0", "author": "sheetjs", - "description": "Excel (XLSB/XLSX/XLSM/XLS/XML) and ODS spreadsheet parser and writer", + "description": "Excel (XLSB/XLSX/XLSM/XLS/XML) and ODS spreadsheet parser and writer (extended to enable read/write of cell formats with xlsx files)", "keywords": [ "excel", "xls", "xlsx", "xlsb", "xlsm", "ods", "office", "spreadsheet" ], "bin": { "xlsx": "./bin/xlsx.njs" }, "main": "./xlsx", "dependencies": { - "ssf":"~0.8.1", + "ssf":"~0.8.2", "codepage":"~1.3.6", "cfb":">=0.10.0", "jszip":"2.4.0", @@ -22,7 +22,7 @@ "xlsjs":"", "uglify-js":"" }, - "repository": { "type":"git", "url":"git://github.com/SheetJS/js-xlsx.git" }, + "repository": { "type":"git", "url":"git://github.com/protobi/js-xlsx.git" }, "scripts": { "pretest": "git submodule init && git submodule update", "test": "make test" @@ -32,7 +32,7 @@ "pattern": "xlsx.js" } }, - "bugs": { "url": "https://github.com/SheetJS/js-xlsx/issues" }, + "bugs": { "url": "https://github.com/protobi/js-xlsx/issues" }, "license": "Apache-2.0", "engines": { "node": ">=0.8" } }