-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.15 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
{
"version": "0.35.1",
"author": "Joep Meindertsma",
"dependencies": {
"@noble/ed25519": "1.6.0",
"@noble/hashes": "^0.5.7",
"base64-arraybuffer": "^1.0.2",
"cross-fetch": "^3.1.4",
"fast-json-stable-stringify": "^2.1.0"
},
"description": "",
"devDependencies": {
"@types/fast-json-stable-stringify": "^2.1.0",
"chai": "^4.3.4",
"typescript": "^4.8",
"whatwg-fetch": "^3.6.2"
},
"files": [
"dist"
],
"license": "MIT",
"main-dev": "src/index.ts",
"main": "dist/src/index.js",
"name": "@tomic/lib",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"prepublishOnly": "pnpm run build && pnpm run lint-fix",
"watch": "tsc --build --watch",
"start": "pnpm watch",
"test": "NODE_OPTIONS='--experimental-vm-modules' ../node_modules/jest/bin/jest.js",
"tsc": "tsc --build",
"typecheck": "tsc --noEmit"
},
"source": "src/index.ts",
"type": "module",
"types": "dist/src/index.d.ts",
"gitHead": "2172c73d8df4e5f273e6386676abc91b6c5b2707"
}