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