-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "pgn-manager",
"version": "1.1.0",
"description": "Libraray built on top of chess.js and pgn-parser to load and process PGN files in typescript.",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hadron43/pgn-manager.git"
},
"keywords": [
"Chess",
"PGN",
"Portal Game Notation"
],
"author": "Harsh Kumar <hadron43@yahoo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hadron43/pgn-manager/issues"
},
"homepage": "https://github.com/hadron43/pgn-manager#readme",
"dependencies": {
"chess.js": "0.12.0",
"pgn-parser": "2.1.0"
},
"devDependencies": {
"@types/chess.js": "^0.11.2",
"typescript": "4.5.2"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib"
]
}