cisv 0.0.1 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -151,9 +151,9 @@ jobs:
151
151
  node-version: '23.x'
152
152
  registry-url: 'https://registry.npmjs.org'
153
153
 
154
- #- name: Update package version
155
- # run: |
156
- # npm version ${VERSION#v} --no-git-tag-version
154
+ - name: Update package version
155
+ run: |
156
+ npm version ${VERSION#v} --no-git-tag-version
157
157
 
158
158
  - name: Build and test
159
159
  run: |
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![Performance](https://img.shields.io/badge/performance-blazing%20fast-red)
4
4
  ![SIMD](https://img.shields.io/badge/SIMD-AVX512%2FAVX2-green)
5
- ![License](https://img.shields.io/badge/license-MIT-blue)
5
+ ![License](https://img.shields.io/badge/license-GPL2-blue)
6
6
  ![Build](https://img.shields.io/badge/build-passing-brightgreen)
7
7
 
8
8
  High-performance CSV parser and writer leveraging SIMD instructions and zero-copy memory mapping. Available as both a Node.js native addon and standalone CLI tool.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cisv",
3
- "version": "v0.0.1",
3
+ "version": "0.0.6",
4
4
  "description": "The fastest csv parser of the multiverse",
5
5
  "author": "sanix<s4nixd@gmail.com>",
6
6
  "main": "./build/Release/cisv.node",
@@ -20,13 +20,15 @@
20
20
  "test:coverage": "nyc mocha test/*.test.js",
21
21
  "test:perf": "node test/performance.test.js"
22
22
  },
23
+ "dependencies": {
24
+ "node-addon-api": "^5.0.0"
25
+ },
23
26
  "devDependencies": {
24
27
  "@types/mocha": "^10.0.10",
25
28
  "@types/node": "^20.19.9",
26
29
  "benchmark": "^2.1.4",
27
30
  "chai": "^4.3.6",
28
31
  "mocha": "^10.0.0",
29
- "node-addon-api": "^5.0.0",
30
32
  "nyc": "^15.0.0",
31
33
  "ts-mocha": "^10.1.0",
32
34
  "typescript": "^5.8.3",