-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.49 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@asamuzakjp/css-color",
"description": "CSS color - Resolve and convert CSS colors.",
"author": "asamuzaK",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/cssColor.git"
},
"homepage": "https://github.com/asamuzaK/cssColor#readme",
"bugs": {
"url": "https://github.com/asamuzaK/cssColor/issues"
},
"files": [
"dist",
"src"
],
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@asamuzakjp/generational-cache": "^2.0.1",
"@csstools/css-calc": "^3.2.0",
"@csstools/css-color-parser": "^4.1.0",
"@csstools/css-parser-algorithms": "^4.0.0",
"@csstools/css-tokenizer": "^4.0.0"
},
"devDependencies": {
"@tanstack/vite-config": "^0.5.2",
"@types/node": "^25.6.0",
"@vitest/coverage-istanbul": "^4.1.5",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-plugin-regexp": "^3.1.0",
"globals": "^17.6.0",
"knip": "^6.11.0",
"mitata": "^1.0.34",
"neostandard": "^0.13.0",
"prettier": "^3.8.3",
"publint": "^0.3.18",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"oxc-resolver",
"unrs-resolver"
],
"overrides": {
"ajv": "^8.18.0",
"@eslint/eslintrc>ajv": "^6.14.0",
"eslint>ajv": "^6.14.0",
"brace-expansion": "^5.0.4",
"minimatch": "^3.1.5",
"@typescript-eslint/typescript-estree>minimatch": "^9.0.9",
"@vue/language-core>minimatch": "^9.0.9",
"eslint-plugin-import-x>minimatch": "^10.2.4",
"glob>minimatch": "^10.2.4",
"lodash@>=4.0.0 <=4.17.23": ">=4.18.0",
"lodash@<=4.17.23": ">=4.18.0"
}
},
"scripts": {
"bench:color": "npx tsx --expose-gc ./benchmark/bench-color.ts",
"build": "pnpm run clean && pnpm run test && pnpm run knip && vite build && pnpm run publint",
"clean": "rimraf ./coverage ./dist",
"knip": "knip",
"prettier": "prettier . --ignore-unknown --write",
"publint": "publint --strict",
"test": "pnpm run prettier && pnpm run --stream \"/^test:.*/\"",
"test:eslint": "eslint ./src ./test --fix",
"test:types": "tsc",
"test:unit": "vitest"
},
"engines": {
"node": "^22.13.0 || >=24.0.0"
},
"version": "6.0.1"
}