@siliconoid/xssml-editor 1.0.0
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.
- package/README.md +244 -0
- package/dist/index.css +465 -0
- package/dist/index.d.ts +863 -0
- package/dist/index.esm.js +5 -0
- package/dist/index.umd.js +5 -0
- package/package.json +112 -0
package/package.json
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@siliconoid/xssml-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A professional X-SSML editor built with React and ProseMirror.",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "Siliconoid",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.esm.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "eslint . && tsc -b && vite build",
|
|
15
|
+
"build:lib": "cross-env BUILD_ID=${npm_config_buildid:-1001} sourcemap=${npm_config_sourcemap:-false} rollup -c --bundleConfigAsCjs",
|
|
16
|
+
"dev": "vite",
|
|
17
|
+
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
18
|
+
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
19
|
+
"lint:style": "stylelint \"src/**/*.{css,scss}\"",
|
|
20
|
+
"lint:style:fix": "stylelint \"src/**/*.{css,scss}\" --fix",
|
|
21
|
+
"prepare": "ls",
|
|
22
|
+
"preview": "vite preview husky"
|
|
23
|
+
},
|
|
24
|
+
"browserslist": [
|
|
25
|
+
"defaults",
|
|
26
|
+
"not ie < 10",
|
|
27
|
+
"last 2 versions",
|
|
28
|
+
"> 1%"
|
|
29
|
+
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@ant-design/icons": "^5.3.0",
|
|
32
|
+
"@types/react-router-dom": "^5.3.3",
|
|
33
|
+
"@vitejs/plugin-legacy": "^6.0.2",
|
|
34
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
35
|
+
"antd": "^5.14.1",
|
|
36
|
+
"axios": "^1.8.3",
|
|
37
|
+
"classnames": "^2.5.1",
|
|
38
|
+
"dayjs": "^1.11.10",
|
|
39
|
+
"dompurify": "^3.2.5",
|
|
40
|
+
"dotenv": "^16.4.7",
|
|
41
|
+
"lodash-es": "^4.17.21",
|
|
42
|
+
"nanoid": "^5.1.5",
|
|
43
|
+
"prosemirror-commands": "^1.7.0",
|
|
44
|
+
"prosemirror-history": "^1.4.1",
|
|
45
|
+
"prosemirror-keymap": "^1.2.2",
|
|
46
|
+
"prosemirror-model": "^1.25.0",
|
|
47
|
+
"prosemirror-schema-basic": "^1.2.4",
|
|
48
|
+
"prosemirror-state": "^1.4.3",
|
|
49
|
+
"prosemirror-view": "^1.38.1",
|
|
50
|
+
"react": "^18.2.0",
|
|
51
|
+
"react-dom": "^18.2.0",
|
|
52
|
+
"react-is": "^18.2.0",
|
|
53
|
+
"react-query": "^3.39.3",
|
|
54
|
+
"react-router-dom": "^6.22.1",
|
|
55
|
+
"reset-css": "^5.0.2",
|
|
56
|
+
"vite": "^6.2.0",
|
|
57
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
58
|
+
"zustand": "^4.5.1"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@babel/preset-react": "^7.26.3",
|
|
62
|
+
"@babel/preset-typescript": "^7.27.0",
|
|
63
|
+
"@commitlint/cli": "^18.4.3",
|
|
64
|
+
"@commitlint/config-conventional": "^18.4.3",
|
|
65
|
+
"@eslint/js": "^9.21.0",
|
|
66
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
67
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
68
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
69
|
+
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
|
|
70
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
71
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
72
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
73
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
74
|
+
"@types/react": "^18.2.45",
|
|
75
|
+
"@types/react-dom": "^18.2.18",
|
|
76
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
77
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
78
|
+
"autoprefixer": "^10.4.21",
|
|
79
|
+
"commitizen": "^4.3.0",
|
|
80
|
+
"cross-env": "^7.0.3",
|
|
81
|
+
"eslint": "8.57.1",
|
|
82
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
83
|
+
"eslint-config-prettier": "^9.1.0",
|
|
84
|
+
"eslint-import-resolver-typescript": "^4.2.2",
|
|
85
|
+
"eslint-plugin-import": "^2.29.1",
|
|
86
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
87
|
+
"eslint-plugin-react": "^7.33.2",
|
|
88
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
89
|
+
"husky": "^9.0.11",
|
|
90
|
+
"lint-staged": "^15.2.0",
|
|
91
|
+
"postcss": "^8.5.3",
|
|
92
|
+
"prettier": "^3.2.5",
|
|
93
|
+
"prettier-plugin-organize-imports": "^4.1.0",
|
|
94
|
+
"prettier-plugin-packagejson": "^2.5.10",
|
|
95
|
+
"prettier-plugin-tailwindcss": "^0.5.11",
|
|
96
|
+
"rollup-plugin-clear": "^2.0.7",
|
|
97
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
98
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
99
|
+
"rollup-plugin-eslint": "^7.0.0",
|
|
100
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
101
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
102
|
+
"rollup-plugin-scss": "^4.0.1",
|
|
103
|
+
"sass": "^1.86.3",
|
|
104
|
+
"sass-embedded": "^1.85.1",
|
|
105
|
+
"semver": "^7.7.1",
|
|
106
|
+
"stylelint": "^17.0.0",
|
|
107
|
+
"stylelint-config-prettier-scss": "^1.0.0",
|
|
108
|
+
"stylelint-config-standard-scss": "^17.0.0",
|
|
109
|
+
"typescript": "~5.7.2"
|
|
110
|
+
},
|
|
111
|
+
"buildid": "1002"
|
|
112
|
+
}
|