-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
{
"name": "react-game-life",
"version": "1.0.4",
"description": "React hook to easily create a Game of Life",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"modules": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JAFB321/react-game-life.git"
},
"author": "JAFB321",
"license": "MIT",
"bugs": {
"url": "https://github.com/JAFB321/react-game-life/issues"
},
"homepage": "https://github.com/JAFB321/react-game-life#readme",
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir ./lib/cjs",
"clean": "rm -rf ./lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"game of life",
"canvas"
],
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"typescript": "^4.7.4"
},
"dependencies": {
"game-life": "^1.2.4",
"react": "^18.2.0"
}
}