xml-tokenizer 0.0.15 → 0.0.17

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.
Files changed (1) hide show
  1. package/package.json +25 -25
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
1
  {
2
2
  "name": "xml-tokenizer",
3
- "version": "0.0.15",
4
- "description": "Straightforward and typesafe XML tokenizer that streams tokens through a callback mechanism",
3
+ "version": "0.0.17",
5
4
  "private": false,
6
- "source": "./src/index.ts",
7
- "main": "./dist/cjs/index.js",
8
- "module": "./dist/esm/index.js",
9
- "types": "./dist/types/index.d.ts",
5
+ "description": "Straightforward and typesafe XML tokenizer that streams tokens through a callback mechanism",
6
+ "keywords": [],
7
+ "homepage": "https://builder.group/?source=package-json",
8
+ "bugs": {
9
+ "url": "https://github.com/builder-group/monorepo/issues"
10
+ },
10
11
  "repository": {
11
12
  "type": "git",
12
13
  "url": "https://github.com/builder-group/monorepo.git"
13
14
  },
14
- "keywords": [],
15
- "author": "@bennobuilder",
16
15
  "license": "MIT",
17
- "bugs": {
18
- "url": "https://github.com/builder-group/monorepo/issues"
19
- },
20
- "homepage": "https://builder.group/?source=package-json",
16
+ "author": "@bennobuilder",
17
+ "main": "./dist/cjs/index.js",
18
+ "module": "./dist/esm/index.js",
19
+ "source": "./src/index.ts",
20
+ "types": "./dist/types/index.d.ts",
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
21
25
  "devDependencies": {
22
- "@types/node": "^20.14.10",
26
+ "@types/node": "^22.10.0",
23
27
  "@types/sax": "^1.2.7",
24
28
  "@types/xml2js": "^0.4.14",
25
29
  "camaro": "^6.2.3",
26
- "fast-xml-parser": "^4.4.1",
30
+ "fast-xml-parser": "^4.5.0",
27
31
  "sax": "^1.4.1",
28
32
  "saxen": "^10.0.0",
29
33
  "txml": "^5.1.1",
30
34
  "xml2js": "^0.6.2",
31
- "@blgc/config": "0.0.24"
35
+ "@blgc/config": "0.0.26"
32
36
  },
33
- "files": [
34
- "dist",
35
- "README.md"
36
- ],
37
37
  "size-limit": [
38
38
  {
39
39
  "path": "dist/esm/index.js"
40
40
  }
41
41
  ],
42
42
  "scripts": {
43
+ "bench": "vitest bench",
43
44
  "build": "shx rm -rf dist && chmod +x ../../scripts/cli.sh && ../../scripts/cli.sh bundle",
44
45
  "build:dev": "shx rm -rf dist && ../../scripts/cli.sh bundle --target=dev",
45
- "start:dev": "tsc -w",
46
- "lint": "eslint --ext .js,.ts src/",
47
46
  "clean": "shx rm -rf dist && shx rm -rf node_modules && shx rm -rf .turbo",
48
47
  "install:clean": "pnpm run clean && pnpm install",
49
- "test": "vitest run",
50
- "bench": "vitest bench",
51
- "update:latest": "pnpm update --latest",
48
+ "lint": "eslint . --fix",
52
49
  "publish:patch": "pnpm build && pnpm version patch && pnpm publish --no-git-checks --access=public",
53
- "size": "size-limit --why"
50
+ "size": "size-limit --why",
51
+ "start:dev": "tsc -w",
52
+ "test": "vitest run",
53
+ "update:latest": "pnpm update --latest"
54
54
  }
55
55
  }