-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "@mybricks/plugin-locale",
"version": "1.0.7",
"description": "mybricks多语言插件",
"main": "lib/index.umd.js",
"module": "es/index.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "rimraf lib/* && rimraf es/* && rollup -c ./rollup.config.js --watch",
"build": "rimraf lib/* && rimraf es/* && rollup -c ./rollup.config.js",
"publish-prod": "npm install && npm run build && npm publish"
},
"keywords": [
"mybricks",
"application"
],
"typings": "dist/es/type/index.d.ts",
"files": [
"es",
"lib",
"package.json",
"README.md"
],
"author": "MyBricks Team",
"license": "ISC",
"dependencies": {
"@mybricks/code-editor": "^1.1.24",
"antd": "^4.23.6",
"axios": "^1.1.3",
"dayjs": "^1.11.6"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"cross-env": "^7.0.3",
"less": "^4.1.3",
"postcss": "^8.4.19",
"rimraf": "^3.0.2",
"rollup": "^2.69.2",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}