-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "@whizzes/walink",
"version": "0.1.0",
"description": "WhatsApp Links Generation Utilities",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"check": "tsc --notEmit",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:dev": "vitest watch",
"lint": "rome format ./src && rome check ./src",
"format": "rome format --write ./src && rome check --apply ./src",
"format:unsafe": "rome format --write ./src && rome check --apply-unsafe ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whizzes/walink.git"
},
"author": "Esteban Borai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/whizzes/walink/issues"
},
"homepage": "https://github.com/whizzes/walink#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"rome": "12.1.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"typescript": "^4.9.4",
"vitest": "^0.28.3"
}
}