-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
51
52
53
54
55
56
57
{
"name": "pacman-contribution-graph",
"version": "3.0.0",
"description": "Generates a pacman game from a github or gitlab user contributions grid",
"repository": "github:DuyetBKU/viz-pacman-github-profile",
"homepage": "https://github.com/DuyetBKU/viz-pacman-github-profile",
"type": "module",
"main": "dist/pacman-contribution-graph.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/pacman-contribution-graph.min.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/pacman-contribution-graph.min.js",
"dist/index.d.ts",
"action.yml"
],
"keywords": [
"github",
"pacman",
"svg",
"contribution-graph",
"animation",
"game",
"actions"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --progress --config webpack.dev.js",
"prepublishOnly": "npm run build",
"build-action": "npm run --prefix ./github-action build",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"prettier": "^3.4.2",
"terser": "^5.37.0",
"ts-jest": "^29.4.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"author": "DuyetBKU",
"dependencies": {
"yargs": "^18.0.0"
},
"bin": {
"pacman-contribution-graph": "./cli/cli.js"
}
}