-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 979 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 979 Bytes
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
{
"name": "@kitz/color",
"version": "0.0.0-kitz-release",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkuhrt/kitz.git"
},
"description": "Color manipulation utilities",
"type": "module",
"sideEffects": false,
"exports": {
".": "./src/__.ts",
"./__": "./src/__.ts"
},
"dependencies": {
"effect": "4.0.0-beta.31"
},
"scripts": {
"build": "tsgo -b tsconfig.build.json --clean && tsgo -b tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch",
"test": "vitest run --config ../../vitest.config.ts --root .",
"test:coverage": "vitest run --config ../../vitest.config.ts --root . --coverage",
"check:cov": "bun run test:coverage",
"check:types": "tsgo --noEmit",
"check:lint": "oxlint src/",
"check:package": "publint && attw --pack --ignore-rules no-resolution cjs-resolves-to-esm internal-resolution-error"
},
"files": [
"build",
"src"
]
}