forked from brookhong/Surfingkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.7 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
{
"name": "Surfingkeys",
"version": "1.0.6",
"description": "Map your keys for web surfing, expand your browser with javascript and keyboard.",
"main": "background.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"clean": "rm -rf dist/*",
"build:doc": "documentation build src/content_scripts/common/api.js src/content_scripts/common/normal.js src/content_scripts/common/clipboard.js src/content_scripts/common/hints.js src/content_scripts/common/visual.js src/content_scripts/front.js -f md -o docs/api.md",
"build:dev": "webpack --mode=development --config ./config/webpack.config.js",
"build:prod": "webpack --mode=production --config ./config/webpack.config.js",
"build:testdata": "webpack --mode=production --config ./config/webpack.test.config.js",
"build": "npm-run-all clean test build:doc build:prod",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brookhong/Surfingkeys.git"
},
"author": "brook hong",
"license": "MIT",
"bugs": {
"url": "https://github.com/brookhong/Surfingkeys/issues"
},
"homepage": "https://github.com/brookhong/Surfingkeys#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/events": "^3.0.0",
"@types/jest-image-snapshot": "^4.3.1",
"@types/lodash": "^4.14.172",
"@types/offscreencanvas": "^2019.6.4",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^9.0.1",
"documentation": "^13.2.5",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^6.1.7",
"jest": "^27.3.1",
"jest-image-snapshot": "^4.5.1",
"npm-run-all": "^4.1.5",
"puppeteer": "^10.2.0",
"strict-event-emitter-types": "^2.0.0",
"string-replace-loader": "^3.0.3",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5",
"typescript": "^4.5.4",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@msgpack/msgpack": "^2.7.0",
"@pixi/app": "^6.2.1",
"@pixi/constants": "^6.2.1",
"@pixi/core": "^6.2.1",
"@pixi/display": "^6.2.1",
"@pixi/graphics": "^6.2.1",
"@pixi/math": "^6.2.1",
"@pixi/runner": "^6.2.1",
"@pixi/settings": "^6.2.1",
"@pixi/sprite": "^6.2.1",
"@pixi/ticker": "^6.2.1",
"@pixi/unsafe-eval": "^6.2.1",
"@pixi/utils": "^6.2.1",
"ace-builds": "^1.4.12",
"dompurify": "^2.3.1",
"js-base64": "^3.7.2",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"pdfjs-dist": "^2.9.359"
}
}