-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
38
39
40
41
42
43
{
"name": "@bfmeta/sign-util",
"version": "2.1.1",
"description": "BFMeta 生成签名的工具包",
"type": "module",
"main": "build/cjs/index.js",
"types": "build/cjs/index.d.ts",
"exports": {
".": {
"types": "./build/esm/index.d.ts",
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"packageManager": "pnpm@10.12.2",
"scripts": {
"dev": "tsc --build -w",
"clean": "node ./scripts/clean.ts",
"fmt": "prettier --write \"./**/*.ts\"",
"lsts": "node ./scripts/listAllFile.ts",
"build": "tsc --build ./tsconfig.all.json",
"rebuild": "pnpm clean && pnpm build",
"pub": "pnpm publish --access public --no-git-checks"
},
"repository": {
"type": "git",
"url": "git@github.com:BioforestChain/BFMeta-Sign-Util.git"
},
"author": "BFMeta Team",
"license": "MIT",
"devDependencies": {
"@gaubee/nodekit": "^0.10.1",
"@types/node": "^22",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"files": [
"build/*"
],
"dependencies": {
"tslib": "^2.8.1"
}
}