-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "cssom-gen",
"description": "Programmatically generate CSS using CSSOM ",
"version": "0.0.2",
"type": "module",
"license": "MIT",
"keywords": [
"cssom",
"css",
"design-tokens",
"design-systems",
"w3c"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davejsdev/cssom-gen.git"
},
"main": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./*": "./dist/*.mjs",
"./package.json": "./package.json"
},
"author": {
"name": "David Leger",
"email": "davidleger95@gmail.com"
},
"packageManager": "pnpm@10.11.0",
"scripts": {
"benchmark": "vitest bench",
"build": "unbuild",
"format": "biome format . --write",
"lint": "biome check .",
"test": "vitest run",
"version": "pnpm run build && changeset version"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"typescript": "^5.8.3",
"unbuild": "^3.6.0",
"vitest": "^3.2.4"
},
"dependencies": {
"window": "^4.2.7"
}
}