58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "connect-force",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"description": "A selfmade Connect Four game.",
|
|
"author": "Manuel Thalmann <m@nuth.ch>",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"webpack": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" webpack",
|
|
"build": "npm run webpack --",
|
|
"compile": "tsc -b tsconfig.build.json",
|
|
"rebuild": "npm run clean && npm run build",
|
|
"watch": "npm run build -- --watch",
|
|
"clean": "npm run compile -- --clean && rimraf ./lib",
|
|
"lint": "eslint --max-warnings 0 ./src .eslintrc.cjs",
|
|
"lint-ide": "npm run lint || exit 0",
|
|
"test": "mocha",
|
|
"prepare": "npm run rebuild"
|
|
},
|
|
"dependencies": {
|
|
"ts-keyof": "^1.3.0",
|
|
"ts-nameof-proxy": "^0.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@manuth/eslint-plugin-typescript": "^4.0.0",
|
|
"@manuth/tsconfig": "^3.0.2",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^18.7.18",
|
|
"@types/webpack": "^5.28.0",
|
|
"chai": "^4.3.7",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.23.1",
|
|
"mocha": "^10.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-loader": "^9.4.2",
|
|
"ts-node": "^10.9.1",
|
|
"ts-patch": "^2.0.2",
|
|
"typescript": "^4.8.3",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^5.0.0"
|
|
}
|
|
}
|