-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "dephash",
"version": "4.0.0",
"description": "Hashes native dependencies for React Native & Expo projects",
"main": "dist/index.js",
"repository": "https://github.com/ridafkih/dephash",
"author": "Rida F'kih <[email protected]>",
"license": "MIT",
"private": false,
"bin": "dist/cli.js",
"scripts": {
"build": "tsc && tsc-alias",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@ridafkih/xxhash-wasm": "^2.0.3",
"commander": "^10.0.1",
"fast-glob": "^3.2.12",
"signale": "^1.4.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}