-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.85 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
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": "@daracl/multiselect",
"version": "0.0.2",
"sideEffects": false,
"description": "Daracl multiselect",
"author": {
"name": "darainfo",
"email": "[email protected]",
"url": "https://www.moaview.com"
},
"license": "MIT",
"keywords": [
"multiselect",
"@daracl/multiselect",
"daracl-multiselect",
"daracl",
"multi-select",
"darainfo",
"javascript"
],
"main": "src/index.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/darainfo/daracl.multiSelect",
"bugs": {
"url": "https://github.com/darainfo/daracl.multiSelect/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/darainfo/daracl.multiSelect.git"
},
"exports": {
".": "./dist/index.js",
"./dist/": "./dist/",
"./style/": "./style/"
},
"files": [
"dist",
"style"
],
"dependencies": {
"init": "^0.1.2",
"ink-docstrap": "^1.3.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"prettier": {
"printWidth": 256,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"semi": true,
"singleQuote": false
},
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/parser": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.21.4",
"@mxssfd/typedoc-theme": "^1.1.1",
"@types/dropzone": "^5.7.4",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-loader": "^8.3.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-lodash": "^3.3.4",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dropzone": "^6.0.0-beta.2",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.12.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.0.0",
"lodash-es": "^4.17.21",
"material-icons": "^1.13.8",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"sass": "^1.80.2",
"sass-loader": "^16.0.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"prepack": "yarn build",
"build": "yarn build:prod && yarn copy-dts && yarn build:tsc && yarn build:js",
"build:tsc": "npx tsc --emitDeclarationOnly",
"build:js": "node build.js",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js && webpack --env=mode=deploy --config webpack.dev.js",
"dts:gen": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir dist",
"docs:gen": "typedoc --tsconfig tsconfig.doc.json",
"test": "jest",
"start": "webpack-dev-server --open --config ./webpack.dev.server.js",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist"
}
}