-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "@lihive/hive-lib",
"version": "0.0.2",
"description": "Data structures for the game of Hive",
"keywords": [
"lihive",
"hive",
"board",
"game"
],
"main": "dist/hive-lib.js",
"type": "module",
"exports": {
"import": "./dist/hive-lib.js",
"require": "./dist/hive-lib.cjs"
},
"types": "dist/hive-lib.d.ts",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lihive/hive-lib.git"
},
"author": "Tristan Dyer",
"scripts": {
"build": "npm run build:bundle:cjs && npm run build:bundle:esm && tsc -p tsconfig.json && api-extractor run --local",
"build:bundle:cjs": "esbuild index.ts --bundle --format=cjs --outfile=dist/hive-lib.cjs",
"build:bundle:esm": "esbuild index.ts --bundle --format=esm --outfile=dist/hive-lib.js",
"test": "vitest run",
"tool:hex-editor": "vite serve hex-editor",
"tool:test-generator": "vite serve test-generator"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.24.1",
"@microsoft/api-extractor": "^7.43.0",
"@solid-primitives/clipboard": "^1.5.10",
"@solid-primitives/keyboard": "^1.2.8",
"@solid-primitives/storage": "^3.0.0",
"esbuild": "^0.20.1",
"prettier": "3.2.5",
"solid-js": "^1.8.15",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.1.5",
"vite-plugin-solid": "^2.10.1",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.1.1"
},
"dependencies": {
"immer": "^10.0.4"
}
}