-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
80 lines (80 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@oknosoft/metadata",
"description": "Library for building offline-first browser-based business applications",
"version": "3.0.1",
"private": true,
"author": "Evgeniy Malyarov <[email protected]> (http://www.oknosoft.ru)",
"license": "MIT",
"engines": {
"node": "^20.11",
"yarn": "^1.22"
},
"packageManager": "[email protected]",
"dependencies": {
"dayjs": "^1.11",
"pouchdb-adapter-http": "^9.0",
"pouchdb-adapter-indexeddb": "^9.0",
"pouchdb-adapter-memory": "^9.0",
"pouchdb-core": "^9.0",
"pouchdb-find": "^9.0",
"pouchdb-mapreduce": "^9.0",
"pouchdb-replication": "^9.0",
"uuid": "^11.0"
},
"devDependencies": {
"@babel/core": "^7.26",
"@babel/preset-env": "^7.26",
"@babel/preset-react": "^7.26",
"@rollup/plugin-node-resolve": "^16.0",
"@rollup/plugin-replace": "^6.0",
"babel-loader": "^9.2",
"react": "^18.3",
"react-dom": "^18.3",
"rollup": "^4.29",
"rollup-plugin-cleanup": "^3.2",
"typescript": "^5.7",
"webpack": "^5.97",
"webpack-cli": "^6.0",
"webpack-dev-server": "^5.2"
},
"peerDependecies": {},
"files": [
"cli/**",
"core/**",
"designer/**",
"postgres/**",
"pouchdb/**",
"LICENSE.md",
"LICENSE.en.md"
],
"scripts": {
"dev": "webpack serve -c example/webpack.config.js",
"build:core": "node core/build.js",
"build:ui": "cd packages/ui/ && cross-env NODE_ENV=production BABEL_ENV=es babel --config-file ./babel.config.js ./src --out-dir . && node ./copy-files && cd ../../ && node packages/ui/build.js",
"build:pouchdb": "node pouchdb/build.js",
"build:docs": "yuidoc -c doc/yuidoc.json src"
},
"repository": {
"type": "git",
"url": "https://github.com/oknosoft/metadata.js.git"
},
"bugs": {
"url": "https://github.com/oknosoft/metadata.js/issues"
},
"homepage": "https://oknosoft.ru/metadata",
"keywords": [
"metadata",
"browser data engine",
"spa offline",
"couchdb",
"pouchdb",
"1c",
"1с",
"web сервис",
"клиент 1с",
"offline js framework",
"offline data engine",
"offline-first",
"replication"
]
}