@pnnh/atom 0.6.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/package.json ADDED
@@ -0,0 +1,173 @@
1
+ {
2
+ "name": "@pnnh/atom",
3
+ "version": "0.6.0",
4
+ "scripts": {
5
+ "build": "rollup -c rollup.config.mjs",
6
+ "test": "vitest run"
7
+ },
8
+ "files": [
9
+ "dist/",
10
+ "README.md",
11
+ "LICENSE",
12
+ "package.json"
13
+ ],
14
+ "main": "./dist/common.cjs",
15
+ "module": "./dist/common.mjs",
16
+ "types": "./dist/common.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/common.d.ts",
20
+ "import": "./dist/common.mjs",
21
+ "require": "./dist/common.cjs"
22
+ },
23
+ "./browser": {
24
+ "types": "./dist/client.d.ts",
25
+ "import": "./dist/client.mjs",
26
+ "require": "./dist/client.cjs"
27
+ },
28
+ "./nodejs": {
29
+ "types": "./dist/server.d.ts",
30
+ "import": "./dist/server.mjs",
31
+ "require": "./dist/server.cjs"
32
+ },
33
+ "./package.json": "./package.json"
34
+ },
35
+ "typesVersions": {
36
+ "*": {
37
+ ".": [
38
+ "./dist/common.d.ts"
39
+ ],
40
+ "browser": [
41
+ "./dist/client.d.ts"
42
+ ],
43
+ "nodejs": [
44
+ "./dist/server.d.ts"
45
+ ]
46
+ }
47
+ },
48
+ "dependencies": {
49
+ "@cmss/check-password-strength": "^2.1.6",
50
+ "@emotion/cache": "^11.14.0",
51
+ "@emotion/css": "^11.13.5",
52
+ "@emotion/react": "^11.14.0",
53
+ "@emotion/server": "^11.11.0",
54
+ "@emotion/styled": "^11.14.0",
55
+ "@fingerprintjs/fingerprintjs": "^5.0.1",
56
+ "@fontsource/roboto": "^5.1.1",
57
+ "@mui/icons-material": "^7.3.5",
58
+ "@mui/material": "^7.3.5",
59
+ "@noble/hashes": "^2.0.0",
60
+ "@pandacss/dev": "^1.7.2",
61
+ "@scure/base": "^2.0.0",
62
+ "@tailwindcss/postcss": "^4.1.17",
63
+ "accept-language": "^3.0.20",
64
+ "autosuggest-highlight": "^3.3.4",
65
+ "base64url": "^3.0.1",
66
+ "cors": "^2.8.5",
67
+ "crypto-js": "^4.2.0",
68
+ "daisyui": "^5.4.7",
69
+ "dom-to-image-more": "^3.7.2",
70
+ "dompurify": "^3.3.0",
71
+ "dotenv": "^17.2.3",
72
+ "front-matter": "^4.0.2",
73
+ "globals": "^16.5.0",
74
+ "html": "^1.0.0",
75
+ "idb": "^8.0.0",
76
+ "idb-keyval": "^6.2.2",
77
+ "is-hotkey": "^0.2.0",
78
+ "isomorphic-dompurify": "^2.31.0",
79
+ "jotai": "^2.15.1",
80
+ "jquery": "^3.7.1",
81
+ "jsbarcode": "^3.11.6",
82
+ "lodash": "^4.17.21",
83
+ "marked": "^17.0.0",
84
+ "marked-highlight": "^2.2.3",
85
+ "material-file-icons": "^2.4.0",
86
+ "md5": "^2.3.0",
87
+ "mime": "^4.0.4",
88
+ "moment": "^2.30.1",
89
+ "parse-uri": "^2.0.3",
90
+ "pg": "^8.16.3",
91
+ "pg-promise": "^12.2.0",
92
+ "pluralize": "^8.0.0",
93
+ "postcss": "^8.5.6",
94
+ "prismjs": "^1.29.0",
95
+ "prop-types": "^15.8.1",
96
+ "qrcode": "^1.5.4",
97
+ "qs": "^6.12.3",
98
+ "query-string": "^9.1.0",
99
+ "react": "^19.0.0",
100
+ "react-dom": "^19.0.0",
101
+ "react-icons": "^5.3.0",
102
+ "rfc4648": "^1.5.3",
103
+ "router": "^2.2.0",
104
+ "sharp": "^0.34.5",
105
+ "sitemap": "^9.0.0",
106
+ "slate": "^0.118.1",
107
+ "slate-dom": "^0.118.1",
108
+ "slate-history": "^0.113.1",
109
+ "slate-react": "^0.118.2",
110
+ "style-object-to-css-string": "^1.1.3",
111
+ "supports-color": "^10.0.0",
112
+ "swr": "^2.3.3",
113
+ "tailwindcss": "^4.1.17",
114
+ "urlpattern-polyfill": "^10.0.0",
115
+ "uuid": "^13.0.0",
116
+ "validator": "^13.12.0",
117
+ "winston": "^3.17.0"
118
+ },
119
+ "devDependencies": {
120
+ "@babel/preset-typescript": "^7.28.5",
121
+ "@emotion/jest": "^11.14.2",
122
+ "@rollup/plugin-alias": "^6.0.0",
123
+ "@rollup/plugin-commonjs": "^29.0.0",
124
+ "@rollup/plugin-json": "^6.1.0",
125
+ "@rollup/plugin-node-resolve": "^16.0.3",
126
+ "@rollup/plugin-typescript": "^12.3.0",
127
+ "@testing-library/dom": "^10.4.1",
128
+ "@testing-library/react": "^16.3.0",
129
+ "@types/autosuggest-highlight": "^3.2.3",
130
+ "@types/cors": "^2.8.17",
131
+ "@types/crypto-js": "^4.2.2",
132
+ "@types/html": "^1.0.4",
133
+ "@types/is-hotkey": "^0.1.10",
134
+ "@types/jquery": "^3.5.32",
135
+ "@types/lodash": "^4.17.7",
136
+ "@types/marked": "^5.0.2",
137
+ "@types/md5": "^2.3.5",
138
+ "@types/node": "^24.10.0",
139
+ "@types/node-cron": "^3.0.11",
140
+ "@types/parse-uri": "^1.0.2",
141
+ "@types/pg": "^8.11.10",
142
+ "@types/prismjs": "^1.26.5",
143
+ "@types/prop-types": "^15.7.12",
144
+ "@types/qrcode": "^1.5.5",
145
+ "@types/qs": "^6.9.15",
146
+ "@types/react": "^19.0.1",
147
+ "@types/react-dom": "^19.2.2",
148
+ "@types/react-icons": "^2.2.7",
149
+ "@types/uuid": "^10.0.0",
150
+ "@types/validator": "^13.12.0",
151
+ "@vitejs/plugin-react": "^5.1.0",
152
+ "@vitejs/plugin-react-swc": "^4.2.1",
153
+ "autoprefixer": "^10.4.21",
154
+ "copy-webpack-plugin": "^13.0.0",
155
+ "http-proxy-middleware": "^3.0.3",
156
+ "jsdom": "^27.1.0",
157
+ "rollup-plugin-dts": "^6.3.0",
158
+ "rollup-plugin-import-css": "^4.1.2",
159
+ "sass": "^1.93.3",
160
+ "ts-node": "^10.9.2",
161
+ "tslib": "^2.6.3",
162
+ "tsx": "^4.11.0",
163
+ "typescript": "^5.9.3",
164
+ "typescript-plugin-css-modules": "^5.2.0",
165
+ "vite": "7.2.2",
166
+ "vite-plugin-babel": "^1.3.0",
167
+ "vite-plugin-dts": "^4.5.4",
168
+ "vite-tsconfig-paths": "^5.1.4",
169
+ "vitest": "^4.0.7",
170
+ "webpack-merge": "^6.0.1",
171
+ "zx": "^8.1.8"
172
+ }
173
+ }