-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 979 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
40
41
42
43
44
45
{
"name": "@jedidiah/game-of-life-wc",
"private": false,
"version": "0.0.5",
"type": "module",
"main": "dist/game-of-life.js",
"description": "A web component to render Conway's Game of Life in an offscreen canvas.",
"author": {
"name": "Jedidiah",
"email": "[email protected]",
"url": "https://jedidiah.dev"
},
"bugs": {
"url": "https://github.com/Jedidiah/game-of-life-wc/issues"
},
"files": [
"./dist",
"./demo-images"
],
"repository": {
"url": "https://github.com/Jedidiah/game-of-life-wc"
},
"license": "CC BY-SA 4.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"publish": "np"
},
"devDependencies": {
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"np": "^10.1.0"
},
"dependencies": {},
"keywords": [
"web-component",
"game-of-life",
"canvas",
"human-made",
"noAI"
]
}