forked from boardzilla/boardzilla-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.77 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@boardzilla/core",
"version": "0.2.13",
"author": "Andrew Hull <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"clean": "rm -rf dist docs",
"build": "yarn build:test && rm -rf dist/test",
"prepublish": "git diff-index --quiet HEAD || (echo 'git unclean' && exit 1)",
"prepack": "./scripts/prepack",
"postpack": "./scripts/postpack",
"build:test": "yarn assets && yarn compile && find dist/ -type f|grep js$|xargs grep -l scss|xargs sed -i~ 's/\\.scss/.css/g' && find dist/ -type f|grep js~$|xargs rm",
"assets": "node esbuild.mjs",
"test": "NODE_ENV=test yarn run build:test && mocha src/test/setup.js dist/test/*_test.js",
"test:debug": "NODE_ENV=test yarn run build:test && mocha --inspect-brk --timeout 3600000 src/test/setup-debug.js dist/test/*_test.js",
"compile": "tsc",
"docs": "typedoc",
"lint": "eslint . --ext .ts",
"dep-check": "dpdm --no-warning --no-tree -T ./src/index.ts"
},
"type": "module",
"exports": {
".": "./entry/index.js",
"./components": "./entry/components/index.js"
},
"files": [
"entry/**/*"
],
"types": "entry/index.d.ts",
"sideEffects": [
"./src/ui/assets/index.scss"
],
"dependencies": {
"classnames": "^2.3.1",
"graphology": "^0.25.4",
"graphology-shortest-path": "^2.0.2",
"graphology-traversal": "^0.3.1",
"graphology-types": "^0.24.7",
"random-seed": "^0.3.0",
"react": "^18.2",
"react-color": "^2.19.3",
"react-dom": "^18.2",
"react-draggable": "^4.4.5",
"uuid-random": "^1.3.2",
"zustand": "^4.4.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-spies": "^1.0.3",
"@types/jest": "^28.1.4",
"@types/node": "^20.6.2",
"@types/random-seed": "^0.3.3",
"@types/react": "^18.2.25",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chai": "^4.3.8",
"chai-spies": "^1.0.0",
"dpdm": "^3.14.0",
"esbuild": "^0.19.5",
"esbuild-sass-plugin": "^2.16.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.2.0",
"ts-node": "^10.8.2",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "^5.2.0"
},
"typedocOptions": {
"entryPoints": [
"src",
"src/game.ts",
"src/board",
"src/flow",
"src/action",
"src/player",
"src/ui"
],
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-merge-modules"
],
"sort": "source-order",
"categorizeByGroup": false,
"excludeInternal": true,
"excludeNotDocumented": true,
"out": "docs",
"name": "@boardzilla/core"
}
}