-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "@hk-artificial-intelligence-association/weibo-api",
"version": "1.0.4",
"description": "元狲科技封装的新浪微博API",
"main": "./dist/index.js",
"type": "module",
"author": "YuanSunTech - Wendaolee",
"keywords": ["新浪微博", "微博", "weibo", "weibo-api"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HK-Artificial-Intelligence-Association/WeiboAPI.git"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/",
"tag": "latest"
},
"scripts": {
"repl": "tsx ./repl.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.config.ts",
"test:cover": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"clean": "rimraf dist",
"dev": "tsx watch src/index.ts",
"start": "tsc --noEmit && tsx src/index.ts",
"type-check": "tsc --noEmit",
"build": "npm run clean && babel src --extensions \".ts,.tsx,.js,.jsx\" --out-dir dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:start": "npm run build && node dist/index.js",
"js:start": "node dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"babel-plugin-module-resolver": "^5.0.2",
"cross-env": "^7.0.3",
"esm": "^3.2.25",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"dependencies": {
"fp-ts": "^2.16.9",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10"
}
}