-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 955 Bytes
/
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
{
"name": "@jrsinclair/functional-maze",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --no-isolate",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@fast-check/vitest": "^0.1.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"dependencies": {
"immutable": "^4.3.6"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72",
"description": "A simple tool to create a square maze",
"main": "dist/simple-maze-generator.js",
"types": "dist/main.d.ts",
"private": false,
"files": [
"dist"
],
"directories": {
"lib": "lib"
},
"keywords": [
"maze"
],
"author": "James Sinclair <jrsinclair@gmail.com>",
"license": "ISC",
"repository": "https://github.com/jrsinclair/functional-maze"
}