-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
{
"name": "@aryan02420/wordle",
"version": "0.4.0",
"description": "stateless Wordle clone",
"main": "dist/cjs/wordle.js",
"bin": "dist/cjs/cli.js",
"files": [
"dist/**"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config rollup.config.js && chmod +x dist/cjs/cli.js",
"dev:build": "NODE_ENV=development rollup --config rollup.config.js --watch",
"start": "node dist/cjs/server.js",
"dev:start": "NODE_ENV=development nodemon -r dotenv/config dist/cjs/server.js",
"test": "jest"
},
"keywords": [
"wordle"
],
"author": "aryan02420",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.16",
"@types/nunjucks": "^3.2.1",
"dotenv": "^16.0.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"rollup": "^2.67.2",
"rollup-plugin-dts": "^4.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@octokit/core": "^3.5.1",
"chalk": "^4.1.2",
"express": "^4.17.3",
"immer": "^9.0.15",
"markdown-it": "^12.3.2",
"nunjucks": "^3.2.3",
"rollup-plugin-string": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryan02420/wordle.git"
},
"bugs": {
"url": "https://github.com/aryan02420/wordle/issues"
},
"homepage": "https://github.com/aryan02420/wordle#readme"
}