-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "@waku-objects/luminance",
"version": "2.0.0",
"description": "Library for getting manipulating colors",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"build": "rimraf dist && tsc -p tsconfig.json && npm run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"check:types": "tsc --project tsconfig.test.json",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"knip": "knip"
},
"author": "Logos Innovation Lab",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.0",
"knip": "^2.16.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}