json-brook 0.1.0-alpha.0 → 0.1.0-alpha.1

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 (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +60 -54
package/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # json-brook
2
+
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 调整打包产物
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 删除无效依赖
14
+
15
+ ## 0.0.2
16
+
17
+ ### Patch Changes
18
+
19
+ - 解析 bug 修复
20
+
21
+ ## 0.0.1
22
+
23
+ - 第一个版本
package/package.json CHANGED
@@ -1,55 +1,61 @@
1
1
  {
2
- "name": "json-brook",
3
- "version": "0.1.0-alpha.0",
4
- "description": "parse json data streamly",
5
- "keywords": [
6
- "json",
7
- "stream"
8
- ],
9
- "homepage": "https://github.com/asurance/json-brook",
10
- "bugs": {
11
- "url": "https://github.com/asurance/json-brook/issues"
12
- },
13
- "license": "MIT",
14
- "author": "asurance",
15
- "sideEffects": [],
16
- "type": "module",
17
- "files": [
18
- "dist"
19
- ],
20
- "main": "./dist/my-lib.umd.cjs",
21
- "module": "./dist/my-lib.js",
22
- "exports": {
23
- ".": {
24
- "import": "./dist/my-lib.js",
25
- "require": "./dist/my-lib.umd.cjs"
26
- }
27
- },
28
- "simple-git-hooks": {
29
- "pre-commit": "npx lint-staged"
30
- },
31
- "lint-staged": {
32
- "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
33
- "pnpm lint"
34
- ]
35
- },
36
- "devDependencies": {
37
- "@biomejs/biome": "2.4.4",
38
- "@types/node": "^25.3.0",
39
- "lint-staged": "~16.2.7",
40
- "simple-git-hooks": "^2.13.1",
41
- "typescript": "~5.9.3",
42
- "vite": "^7.3.1",
43
- "vite-plugin-dts": "^4.5.4"
44
- },
45
- "publishConfig": {
46
- "access": "public",
47
- "registry": "https://registry.npmjs.org/"
48
- },
49
- "scripts": {
50
- "dev": "vite",
51
- "build": "tsc && vite build",
52
- "preview": "vite preview",
53
- "lint": "biome check --fix"
54
- }
55
- }
2
+ "name": "json-brook",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "parse json data streamly",
5
+ "keywords": [
6
+ "json",
7
+ "stream"
8
+ ],
9
+ "homepage": "https://github.com/asurance/json-brook",
10
+ "bugs": {
11
+ "url": "https://github.com/asurance/json-brook/issues"
12
+ },
13
+ "license": "MIT",
14
+ "author": "asurance",
15
+ "sideEffects": [],
16
+ "type": "module",
17
+ "files": [
18
+ "dist",
19
+ "CHANGELOG.md"
20
+ ],
21
+ "main": "./dist/index.umd.cjs",
22
+ "module": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "import": "./dist/index.js",
27
+ "require": "./dist/index.umd.cjs"
28
+ }
29
+ },
30
+ "scripts": {
31
+ "dev": "vite --config vite.doc.config.ts",
32
+ "build": "tsc && vite build",
33
+ "build:doc": "tsc && vite build --config vite.doc.config.ts",
34
+ "preview": "vite preview",
35
+ "lint": "biome check --fix"
36
+ },
37
+ "simple-git-hooks": {
38
+ "pre-commit": "npx lint-staged"
39
+ },
40
+ "lint-staged": {
41
+ "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
42
+ "pnpm lint"
43
+ ]
44
+ },
45
+ "devDependencies": {
46
+ "@biomejs/biome": "2.4.4",
47
+ "@tailwindcss/vite": "^4.1.13",
48
+ "@types/node": "^25.3.0",
49
+ "lint-staged": "~16.2.7",
50
+ "shiki": "^3.22.0",
51
+ "simple-git-hooks": "^2.13.1",
52
+ "solid-devtools": "^0.34.3",
53
+ "solid-js": "^1.9.11",
54
+ "tailwindcss": "^4.1.13",
55
+ "typescript": "~5.9.3",
56
+ "vite": "^7.3.1",
57
+ "vite-plugin-dts": "^4.5.4",
58
+ "vite-plugin-solid": "^2.11.8"
59
+ },
60
+ "packageManager": "pnpm@9.1.2"
61
+ }