-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.59 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.59 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
{
"name": "playgama-bridge",
"version": "1.30.2",
"description": "One SDK for cross-platform publishing HTML5 games",
"main": "index.js",
"scripts": {
"build": "npm run build:bundled",
"build:dynamic": "webpack --config-name dynamic",
"build:bundled": "webpack --config-name bundled",
"build:nolint": "webpack --config-name bundled --env noLint",
"build:platform": "node scripts/build-platform.js",
"develop": "webpack --mode=development",
"dev": "webpack serve --mode=development --config-name dynamic",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playgama/bridge"
},
"author": "Playgama",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/playgama/bridge/issues"
},
"homepage": "https://github.com/playgama/bridge",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.0",
"babel-loader": "^8.2.3",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-sort-class-members": "^1.21.0",
"eslint-webpack-plugin": "^4.0.1",
"jsdom": "^24.0.0",
"typescript": "^5.9.3",
"vitest": "^1.6.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.15.2"
}
}