-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
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
{
"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"
],
"packageManager": "[email protected]",
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"dependencies": {
"@csstools/css-calc": "^2.1.1",
"@csstools/css-color-parser": "^3.0.7",
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
"lru-cache": "^10.4.3"
},
"devDependencies": {
"@tanstack/config": "^0.16.0",
"@vitest/coverage-istanbul": "^3.0.1",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-regexp": "^2.7.0",
"globals": "^15.14.0",
"knip": "^5.42.1",
"neostandard": "^0.12.0",
"prettier": "^3.4.2",
"publint": "^0.3.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.1"
},
"scripts": {
"build": "pnpm run build:prod && pnpm run build:browser",
"build:browser": "vite build -c vite.browser.config.ts",
"build:prod": "vite build",
"clean": "rimraf ./dist && rimraf ./coverage",
"prettier": "prettier . --ignore-unknown --write",
"publint": "publint --strict",
"test": "pnpm run prettier && pnpm run --stream \"/^test:.*/\" && pnpm run build && pnpm run publint",
"test:eslint": "eslint ./src ./test --fix",
"test:knip": "knip",
"test:types": "tsc",
"test:unit": "vitest"
},
"version": "3.0.0"
}