-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "Claus Haas",
"dependencies": {
"apca-w3": "^0.1.9"
},
"description": "Easy way to create the color palette of your app",
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/apca-w3": "^0.1.3",
"@types/node": "^25.6.0",
"markdownlint-cli": "^0.48.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs/README.md",
"docs/API.md",
"docs/Config.md",
"docs/Concepts.md",
"docs/Architecture.md",
"docs/Validation.md",
"docs/FAQ.md",
"docs/Usage-Web.md",
"docs/Usage-ReactNative.md",
"docs/Usage-JSON.md",
"docs/CLI.md",
"docs/Exporters.md",
"docs/Tokens.md",
"docs/Diagnostics.md",
"docs/Alpha.md",
"docs/Overlays.md",
"docs/Text.md",
"docs/Why.md",
"docs/Migration.md",
"docs/spec.md",
"docs/_api-surface.md",
"docs/snippets/serialize-oklch.md"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@clhaas/palette-kit",
"packageManager": "pnpm@10.33.2",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/claushaas/palette-kit"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"lint": "pnpm run lint:biome && pnpm run lint:md && pnpm run typecheck",
"lint:biome": "biome check --unsafe --write",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules --fix",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"update": "pnpm dlx npm-check-updates -i"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.4.0"
}