-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.55 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.55 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "idea-react",
"version": "2.2.2",
"license": "LGPL-3.0-or-later",
"author": "shiy2008@gmail.com",
"description": "A React advanced components library based on TypeScript & Bootstrap, built by idea2app remote developers team.",
"keywords": [
"react",
"component",
"typescript",
"bootstrap"
],
"homepage": "https://idea2app.github.io/Idea-React/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/Idea-React.git"
},
"bugs": {
"url": "https://github.com/idea2app/Idea-React/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"@editorjs/editorjs": "^2.31.6",
"@editorjs/paragraph": "^2.11.7",
"@react-editor-js/core": "^2.1.0",
"@swc/helpers": "^0.5.21",
"classnames": "^2.5.1",
"editorjs-html": "^4.0.5",
"html2canvas": "^1.4.1",
"iterable-observer": "^1.1.0",
"lodash": "^4.18.1",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"mobx-react-helper": "^0.5.1",
"prismjs": "^1.30.0",
"react-bootstrap": "^2.10.10",
"react-editor-js": "^2.1.0",
"react-element-to-jsx-string": ">=15",
"react-live": "^4.1.8",
"web-utility": "^4.6.6"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@cspell/eslint-plugin": "^10.0.0",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.58.7",
"@parcel/config-default": "~2.16.4",
"@parcel/packager-ts": "~2.16.4",
"@parcel/transformer-less": "2.16.4",
"@parcel/transformer-typescript-tsc": "~2.16.4",
"@parcel/transformer-typescript-types": "~2.16.4",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.2",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"buffer": "^6.0.3",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"koapache": "^3.0.0",
"less": "^4.6.4",
"lint-staged": "^16.4.0",
"parcel": "~2.16.4",
"postcss": "^8.5.13",
"prettier": "^3.8.3",
"prettier-plugin-css-order": "^2.2.0",
"process": "^0.11.10",
"prop-types": "15.8.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"typedoc": "^0.28.19",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"printWidth": 100,
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
},
"lint-staged": {
"*.{md,less,json,yml,js,mjs,ts,tsx}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"api-extractor": "tsc --project tsconfig.build.json --outDir dist/dts && api-extractor run && rimraf dist/dts",
"pack-preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel build --public-url=. --dist-dir=../docs/preview/",
"pack-docs": "rimraf docs/ && typedoc source/",
"pack-dist": "rimraf .parcel-cache/ dist/ && parcel build && sed -i 's/^require(\"\\.\\/index\\.css\");//' dist/index.js && rimraf dist/index.js.map",
"start": "npm run pack-docs && npm run pack-preview && web-server docs/ -p 8080 -o",
"build": "npm run pack-docs && npm run pack-preview && npm run pack-dist && npm run api-extractor",
"prepublishOnly": "npm test && npm run build",
"preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel --open"
}
}