-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.02 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.02 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mobx-restful-table",
"version": "2.6.3",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "A Pagination Table & Scroll List component suite for CRUD operation, which is based on MobX RESTful & React.",
"keywords": [
"table",
"form",
"component",
"crud",
"mobx",
"restful",
"react"
],
"homepage": "https://idea2app.github.io/MobX-RESTful-table/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/MobX-RESTful-table.git"
},
"bugs": {
"url": "https://github.com/idea2app/MobX-RESTful-table/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"@swc/helpers": "^0.5.17",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"mobx": "^6.15.0",
"mobx-i18n": ">=0.6",
"mobx-react": "^9.2.1",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.4",
"react-bootstrap": "^2.10.10",
"react-bootstrap-editor": "^2.1.1",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.6.4"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@octokit/openapi-types": "^27.0.0",
"@parcel/config-default": "~2.16.1",
"@parcel/packager-ts": "~2.16.1",
"@parcel/transformer-less": "~2.16.1",
"@parcel/transformer-typescript-tsc": "~2.16.1",
"@parcel/transformer-typescript-types": "~2.16.1",
"@types/lodash": "^4.17.21",
"@types/node": "^22.19.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"idea-react": "^2.0.0-rc.13",
"koajax": "^3.1.2",
"lint-staged": "^16.2.7",
"mobx-github": "^0.6.2",
"parcel": "~2.16.1",
"prettier": "^3.7.4",
"prismjs": "^1.30.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"rimraf": "^6.1.2",
"typedoc": "^0.28.15",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "~5.9.3"
},
"resolutions": {
"@octokit/openapi-types": "$@octokit/openapi-types"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 100
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel --open",
"test": "lint-staged",
"pack-preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel build --public-url=. --dist-dir=../docs/preview/",
"pack-dist": "rm -rf dist/ docs/ && parcel build && sed -i 's/^require(\"\\.\\/index\\.css\");//' dist/index.js && rimraf dist/index.js.map",
"build": "npm run pack-dist && typedoc source/ && npm run pack-preview",
"prepublishOnly": "npm test && npm run build"
}
}