-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "issues",
"version": "1.0.0",
"repository": "https://github.com/xiaotiandada/issues.git",
"author": "xiaotiandada <istianlei@qq.com>",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"build:dev": "npm run clean && env_type=development npm run build",
"build:prod": "npm run clean && env_type=production npm run build",
"clean": "rimraf lib"
},
"devDependencies": {
"@parcel/packager-ts": "2.6.2",
"@parcel/transformer-typescript-types": "2.6.2",
"@rollup/plugin-typescript": "^8.3.4",
"@types/lodash": "^4.14.182",
"@types/markdown-it": "^12.2.3",
"@types/node": "^15.6.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@octokit/auth-oauth-user": "^1.2.4",
"@octokit/rest": "^18.12.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"lodash": "^4.17.21"
}
}