-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "@soulwallet/result",
"version": "0.2.1",
"description": "A lib designed based on the philosophy of 'Errors are values'",
"author": "Jayden@SoulWallet",
"homepage": "https://github.com/SoulWallet/soulwalletlib#readme",
"license": "MIT",
"main": "./lib.cjs/main.js",
"module": "./lib.esm/main.js",
"types": "./lib.esm/main.d.ts",
"directories": {
"lib": "lib.cjs",
"test": "__tests__"
},
"files": [
"lib.cjs",
"lib.esm"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoulWallet/soulwalletlib.git"
},
"scripts": {
"typedoc": "typedoc",
"docs": "npx typedoc --tsconfig ./tsconfig.esm.json --plugin typedoc-plugin-markdown typedoc-plugin-missing-exports src/main.ts",
"tsc": "tsc",
"build": "tsc --project ./tsconfig.esm.json;tsc --project ./tsconfig.cjs.json;node ./create-package-json.js",
"javascript-obfuscator": "javascript-obfuscator",
"test": "jest"
},
"bugs": {
"url": "https://github.com/SoulWallet/soulwalletlib/issues"
},
"dependencies": {},
"devDependencies": {},
"exports": {
".": {
"import": "./lib.esm/main.js",
"require": "./lib.cjs/main.js"
}
}
}