-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.19 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
{
"private": false,
"name": "game-ts",
"description": "Functional Game Engine for Typescript",
"version": "0.7.4",
"license": "MIT",
"author": "Anthony Gabriele <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/anthonyjoeseph/game-ts"
},
"homepage": "https://github.com/anthonyjoeseph/game-ts",
"bugs": "https://github.com/anthonyjoeseph/game-ts/issues",
"keywords": [
"functional-programming",
"typescript",
"fp-ts",
"rxjs"
],
"main": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "tsc -p ./tsconfig.build.json -w",
"build": "tsc -p ./tsconfig.build.json",
"typecheck": "tsc --noEmit",
"typecheck-dev": "tsc -w --noEmit",
"lint": "eslint ./src/ ./test/ --ext ts",
"fmt": "prettier --write .",
"fmt-check": "prettier --check .",
"test": "jest",
"prepub": "rm -rf dist && mkdir -p dist && cp ./README.md ./dist/ && cat ./package.json | grep -v '\"private\":' > ./dist/package.json && yarn run build"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@testing-library/dom": "^7.29.0",
"@types/eslint": "^7.2.6",
"@types/geometric": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-jest": "^26.6.3",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"fast-check": "^2.10.0",
"fp-ts": "^2.9.1",
"geometric": "^2.2.5",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-key-enum": "^2.0.5",
"typescript": "^4.1.3"
},
"peerDependencies": {
"fp-ts": "^2.9.1",
"fp-ts-contrib": "^0.1.21",
"graphics-ts": "^1.1.0",
"io-ts": "^2.2.13",
"rxjs": "^6.6.3"
},
"dependencies": {
"@juggle/resize-observer": "^3.2.0",
"assert": "^2.0.0",
"fetch-img": "^0.1.0",
"fp-ts-contrib": "^0.1.21",
"fp-ts-rxjs": "^0.6.13",
"fp-ts-std": "^0.7.0",
"graphics-ts": "^1.1.0",
"io-ts": "^2.2.13",
"io-ts-types": "^0.5.12",
"monocle-ts": "^2.3.3",
"rxjs": "^7.0.0-beta.9"
}
}