-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 936 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
{
"name": "leetcode-daily-question",
"version": "0.0.4",
"description": "get the daily question of leetcode",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ruleeeer/leetcode-daily-question.git"
},
"type": "module",
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"build": "node build.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path ."
},
"keywords": [
"leetcode",
"question"
],
"author": "ruleeeer",
"license": "Apache 2.0",
"devDependencies": {
"@types/node": "^18.16.17",
"conventional-changelog-cli": "^3.0.0",
"esbuild": "^0.17.19",
"typescript": "^5.1.3"
}
}