ds-markdown 0.0.5-beta.0 → 0.0.5-beta.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 (1) hide show
  1. package/package.json +103 -100
package/package.json CHANGED
@@ -1,103 +1,106 @@
1
1
  {
2
- "name": "ds-markdown",
3
- "private": false,
4
- "version": "0.0.5-beta.0",
5
- "main": "./dist/cjs/index.js",
6
- "types": "./dist/cjs/index.d.ts",
7
- "module": "./dist/esm/index.js",
8
- "style": "./src/style.css",
9
- "type": "module",
10
- "license": "MIT",
11
- "repository": {
12
- "type": "git",
13
- "url": "https://github.com/onshinpei/ds-markdown"
2
+ "name": "ds-markdown",
3
+ "private": false,
4
+ "version": "0.0.5-beta.1",
5
+ "main": "./dist/cjs/index.js",
6
+ "types": "./dist/cjs/index.d.ts",
7
+ "module": "./dist/esm/index.js",
8
+ "style": "./src/style.css",
9
+ "type": "module",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/onshinpei/ds-markdown"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/onshinpei/ds-markdown/issues"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "import": {
21
+ "types": "./dist/esm/index.d.ts",
22
+ "default": "./dist/esm/index.js"
23
+ },
24
+ "require": {
25
+ "types": "./dist/cjs/index.d.ts",
26
+ "default": "./dist/cjs/index.js"
27
+ }
14
28
  },
15
- "bugs": {
16
- "url": "https://github.com/onshinpei/ds-markdown/issues"
17
- },
18
- "exports": {
19
- ".": {
20
- "import": {
21
- "types": "./dist/esm/index.d.ts",
22
- "default": "./dist/esm/index.js"
23
- },
24
- "require": {
25
- "types": "./dist/cjs/index.d.ts",
26
- "default": "./dist/cjs/index.js"
27
- }
28
- },
29
- "./style.css": "./dist/style.css"
30
- },
31
- "files": [
32
- "dist"
33
- ],
34
- "scripts": {
35
- "dev": "vite",
36
- "build": "npm run build:cjs && npm run build:esm && npm run build:less",
37
- "build:cjs": "tsc --project tsconfig-cjs.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
38
- "build:esm": "tsc --project tsconfig-esm.json",
39
- "build:less": "lessc src/style.less dist/style.css",
40
- "lint": "eslint .",
41
- "preview": "vite preview",
42
- "prepublish": "npm run build",
43
- "prepublishOnly": "npm run build"
44
- },
45
- "dependencies": {
46
- "classnames": "^2.5.1",
47
- "react-markdown": "^10.1.0",
48
- "react-syntax-highlighter": "^15.6.1",
49
- "remark-gfm": "^4.0.1"
50
- },
51
- "devDependencies": {
52
- "@antfu/eslint-config": "^4.12.0",
53
- "@babel/core": "^7.27.1",
54
- "@babel/preset-react": "^7.27.1",
55
- "@babel/preset-typescript": "^7.27.1",
56
- "@eslint-react/eslint-plugin": "^1.48.5",
57
- "@eslint/js": "^9.25.0",
58
- "@rollup/plugin-babel": "^6.0.4",
59
- "@rollup/plugin-commonjs": "^28.0.3",
60
- "@rollup/plugin-node-resolve": "^16.0.1",
61
- "@rollup/plugin-typescript": "^12.1.2",
62
- "@testing-library/jest-dom": "^6.6.3",
63
- "@types/jest": "^29.5.14",
64
- "@types/react": "^19.1.2",
65
- "@types/react-dom": "^19.1.2",
66
- "@types/react-syntax-highlighter": "^15.5.13",
67
- "@vitejs/plugin-react": "^4.4.1",
68
- "eslint": "^9.25.0",
69
- "eslint-config-prettier": "^10.1.2",
70
- "eslint-plugin-compat": "^6.0.2",
71
- "eslint-plugin-prettier": "^5.3.1",
72
- "eslint-plugin-react": "^7.37.5",
73
- "eslint-plugin-react-hooks": "^5.2.0",
74
- "eslint-plugin-react-refresh": "^0.4.19",
75
- "globals": "^16.0.0",
76
- "less": "^4.3.0",
77
- "prettier": "3.5.3",
78
- "react": "^19.1.0",
79
- "react-dom": "^19.1.0",
80
- "react-refresh": "^0.17.0",
81
- "rehype-stringify": "^10.0.1",
82
- "remark-parse": "^11.0.0",
83
- "remark-rehype": "^11.1.2",
84
- "rollup": "^4.40.2",
85
- "rollup-plugin-postcss": "^4.0.2",
86
- "typescript": "~5.8.3",
87
- "typescript-eslint": "^8.30.1",
88
- "unified": "^11.0.5",
89
- "vite": "^6.3.2"
90
- },
91
- "peerDependencies": {
92
- "react": ">=16.8.0"
93
- },
94
- "keywords": [
95
- "markdown",
96
- "deepseek",
97
- "deepseek-markdown",
98
- "deepseek-markdown-react",
99
- "react",
100
- "react-component",
101
- "react-markdown"
102
- ]
29
+ "./style.css": "./dist/style.css"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "scripts": {
35
+ "dev": "vite",
36
+ "build": "npm run build:cjs && npm run build:esm && npm run build:less",
37
+ "build:cjs": "tsc --project tsconfig-cjs.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
38
+ "build:esm": "tsc --project tsconfig-esm.json",
39
+ "build:less": "lessc src/style.less dist/style.css",
40
+ "lint": "eslint .",
41
+ "preview": "vite preview",
42
+ "prepublish": "npm run build",
43
+ "prepublishOnly": "npm run build && node scripts/set-tag.cjs"
44
+ },
45
+ "dependencies": {
46
+ "classnames": "^2.5.1",
47
+ "react-markdown": "^10.1.0",
48
+ "react-syntax-highlighter": "^15.6.1",
49
+ "remark-gfm": "^4.0.1"
50
+ },
51
+ "devDependencies": {
52
+ "@antfu/eslint-config": "^4.12.0",
53
+ "@babel/core": "^7.27.1",
54
+ "@babel/preset-react": "^7.27.1",
55
+ "@babel/preset-typescript": "^7.27.1",
56
+ "@eslint-react/eslint-plugin": "^1.48.5",
57
+ "@eslint/js": "^9.25.0",
58
+ "@rollup/plugin-babel": "^6.0.4",
59
+ "@rollup/plugin-commonjs": "^28.0.3",
60
+ "@rollup/plugin-node-resolve": "^16.0.1",
61
+ "@rollup/plugin-typescript": "^12.1.2",
62
+ "@testing-library/jest-dom": "^6.6.3",
63
+ "@types/jest": "^29.5.14",
64
+ "@types/react": "^19.1.2",
65
+ "@types/react-dom": "^19.1.2",
66
+ "@types/react-syntax-highlighter": "^15.5.13",
67
+ "@vitejs/plugin-react": "^4.4.1",
68
+ "eslint": "^9.25.0",
69
+ "eslint-config-prettier": "^10.1.2",
70
+ "eslint-plugin-compat": "^6.0.2",
71
+ "eslint-plugin-prettier": "^5.3.1",
72
+ "eslint-plugin-react": "^7.37.5",
73
+ "eslint-plugin-react-hooks": "^5.2.0",
74
+ "eslint-plugin-react-refresh": "^0.4.19",
75
+ "globals": "^16.0.0",
76
+ "less": "^4.3.0",
77
+ "prettier": "3.5.3",
78
+ "react": "^19.1.0",
79
+ "react-dom": "^19.1.0",
80
+ "react-refresh": "^0.17.0",
81
+ "rehype-stringify": "^10.0.1",
82
+ "remark-parse": "^11.0.0",
83
+ "remark-rehype": "^11.1.2",
84
+ "rollup": "^4.40.2",
85
+ "rollup-plugin-postcss": "^4.0.2",
86
+ "typescript": "~5.8.3",
87
+ "typescript-eslint": "^8.30.1",
88
+ "unified": "^11.0.5",
89
+ "vite": "^6.3.2"
90
+ },
91
+ "peerDependencies": {
92
+ "react": ">=16.8.0"
93
+ },
94
+ "keywords": [
95
+ "markdown",
96
+ "deepseek",
97
+ "deepseek-markdown",
98
+ "deepseek-markdown-react",
99
+ "react",
100
+ "react-component",
101
+ "react-markdown"
102
+ ],
103
+ "publishConfig": {
104
+ "tag": "beta"
105
+ }
103
106
  }