-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "@ardenthq/arkvault-url",
"type": "module",
"version": "1.2.0",
"description": "URL parser and validator for ARK based networks",
"exports": "./distribution/index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prettier": "prettier --write \"./*.{ts,tsx,js,jsx,json,md}\" \"./**/*.{ts,tsx,jsx,js,json,md}\"",
"lint": "eslint source/**/*.ts --fix --quiet",
"format": "pnpm lint && pnpm prettier",
"build": "tsc",
"test": "LFD=localforage-driver-memory uvu -r tsm source",
"test:coverage": "c8 pnpm run test"
},
"types": "./distribution/index.d.ts",
"files": [
"/distribution"
],
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@ardenthq/sdk-test": "^1.3.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"localforage-driver-memory": "^1.0.5",
"prettier": "^3.2.5",
"tsm": "^2.3.0",
"typescript": "^5.4.5",
"uvu": "^0.5.6"
},
"engines": {
"node": ">=14.16"
}
}