forked from mliebelt/pgn-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "@mliebelt/pgn-viewer",
"description": "A pgn viewer to view or edit chess games on HTML web sites.",
"keywords": [
"chess",
"pgn",
"viewer"
],
"version": "1.6.7",
"type": "module",
"main": "lib/dist.js",
"types": "lib/index.d.ts",
"files": [
"lib/**",
"README.md",
"LICENSE"
],
"author": "mliebelt",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/mliebelt/pgn-viewer.git"
},
"scripts": {
"clean": "rm -fr lib/*",
"build": "node_modules/.bin/webpack --config webpack.prod.cjs",
"start": "node_modules/.bin/webpack serve --config webpack.dev.cjs",
"server": "http-server",
"gen_i18n": "./bin/gen-i18n.cjs",
"test": "uvu -r tsm test",
"buildtsc": "tsc src/**/*.ts",
"gen_examples": "node ./bin/gen_examples.mjs"
},
"dependencies": {
"@mliebelt/pgn-reader": "1.2.25",
"chessground": "^9.0.4",
"modaly.js": "^0.5.2",
"mousetrap-ts": "^1.0.0",
"roddeh-i18n": "^1.2.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@types/smoothscroll-polyfill": "^0.3.3",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.0.0",
"css-loader": "^7.0.0",
"http-server": "^14.1.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsm": "^2.0.0",
"typescript": "^5.4.2",
"uvu": "^0.5.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0",
"webpack-merge": "^5.10.0"
}
}