-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
38
39
40
41
42
{
"name": "hexashades",
"version": "1.1.0",
"description": "Creates shades & tints for a given HEX code.",
"author": "arjunkdot",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"api": "none",
"scripts": {
"test": "jest tests",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"prepare": "husky"
},
"bugs": {
"url": "https://github.com/arjunkdot/hexashades/issues"
},
"homepage": "https://github.com/arjunkdot/hexashades#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.15.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}