forked from hermanschaaf/jieba-js
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
98 lines (98 loc) · 3.71 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
{
"name": "jieba-js",
"version": "1.0.0",
"description": "An experimental webpage for observing Chinese natural language processing. It demonstrates the processes of decomposition, transformation, deletion, and model building. Written in JavaScript, it can be executed in any browser. The webpage can be integrated with other tools to create word clouds, perform text statistical analysis, conduct LDA topic modeling, and utilize machine learning classifiers.",
"main": "index.js",
"scripts": {
"start": "bash ./docker-compose/d3.webpack-watch-build-production.sh",
"w1.webpack-build-development": "webpack --mode development --config ./config/webpack.config.js ",
"w2.webpack-watch-development": "webpack --watch --mode development --display errors-only --config ./config/webpack.config.js ",
"w3.webpack-watch-build-production": "webpack --watch --mode production --display errors-only --config ./config/webpack.config.js ",
"w4.webpack-build-production": "webpack --mode production --config ./config/webpack.config.js ",
"d0.build": "bash ./docker-compose/docker-compose-build.sh",
"d1.webpack-build-development": "bash ./docker-compose/d1.webpack-build-development.sh",
"d2.webpack-watch-development": "bash ./docker-compose/d2.webpack-watch-development.sh",
"d3.webpack-watch-build-production": "bash ./docker-compose/d3.webpack-watch-build-production.sh",
"d4.webpack-build-production": "bash ./docker-compose/d4.webpack-build-production.sh",
"l.start-server": "bash ./start-local-server.sh",
"tag": "./build/tag.sh"
},
"repository": {
"type": "git",
"url": "git+https://pulipuli.chen@gmail.com@github.com/pulipulichen/jieba-js.git"
},
"keywords": [
"PWA",
"puli-portfolio",
"Jieba",
"NLP",
"natural language processing",
"Chinese",
"JavaScript",
"Universal Sentence Encoder"
],
"author": {
"name": "Yung-Ting Chen",
"email": "blog@pulipuli.info",
"orcid": "https://orcid.org/0000-0003-3751-610X",
"url": "https://blog.pulipuli.info"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pulipulichen/jieba-js/issues"
},
"homepage": "https://github.com/pulipulichen/jieba-js#readme",
"doi": "10.5281/zenodo.11213326",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "7.5.5",
"@babel/runtime": "7.6.3",
"@kazupon/vue-i18n-loader": "0.4.1",
"@vue/component-compiler-utils": "3.0.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.6",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"concurrently": "5.0.0",
"css-loader": "3.2.0",
"cssnano": "4.1.10",
"dotenv": "8.1.0",
"file-loader": "4.2.0",
"file-saver": "2.0.5",
"fs-extra": "8.1.0",
"graceful-fs": "4.2.2",
"html-loader": "0.5.5",
"less": "3.10.3",
"less-loader": "5.0.0",
"postcss-loader": "3.0.0",
"style-loader": "1.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"vue": "2.6.10",
"vue-fragment": "1.5.1",
"vue-i18n": "8.14.0",
"vue-loader": "15.7.1",
"vue-router": "3.1.3",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.39.2",
"webpack-cli": "3.3.9",
"xlsx": "0.18.5",
"stemmer": "2.0.0",
"papaparse": "5.3.2"
},
"dependencies": {
"axios": "0.20.0",
"dom-to-image": "2.6.0",
"jquery": "3.5.1",
"sortablejs": "1.12.0",
"toastr": "2.1.4",
"toastr2": "3.0.0-alpha.15",
"vuedraggable": "2.24.2",
"webpack-bundle-analyzer": "3.9.0"
}
}