generated from digshare-scripts/digshare-script-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 803 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 803 Bytes
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
{
"name": "@digshare/awesome-channel",
"version": "0.1.0",
"publishConfig": {
"registry": "https://script.dingshao.cn/registry/"
},
"files": [
"bundled-script.js"
],
"main": "bundled-script.js",
"digshare": {
"runtime": "nodejs14",
"cron": "0 0 * * * *"
},
"scripts": {
"dev-run": "ts-node ./src/dev-run.ts",
"build": "rimraf ./bld && tsc --project ./src && dss build --input ./bld/script.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@digshare/script": "^0.3.3",
"@types/ms": "latest",
"ms": "latest",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@types/node": "14",
"@types/xml2js": "^0.4.9",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}