-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "@cryptochords/shared",
"version": "0.0.0",
"description": "Shared package for CryptoChords Application",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./src/*": "./src/*"
},
"private": true,
"scripts": {
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"build:esm": "tsc -p tsconfig.build.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest watch"
},
"author": "",
"license": "MIT",
"dependencies": {
"hemi-viem": "1.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"@types/node": "^18.7.15",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@vitest/coverage-c8": "^0.23.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"ts-node": "^10.9.1",
"typescript": "5.7.2",
"vite": "^5.0.11",
"vitest": "^0.23.1"
}
}