-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 859 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 859 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
34
35
36
37
38
39
{
"name": "csstype-extra",
"type": "module",
"version": "0.1.24",
"description": "Strict TypeScript types for style based on MDN data",
"repository": "https://github.com/dev-five-git/csstypes",
"author": "devfive",
"license": "Apache-2.0",
"keywords": [
"css",
"types",
"mdn",
"style"
],
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"build": "bun build.ts && biome check src --write",
"prepare": "husky",
"changepacks": "bunx @changepacks/cli"
},
"files": [
"src"
],
"types": "src/index.d.ts",
"devDependencies": {
"@biomejs/biome": "^2.3",
"@types/bun": "latest",
"@types/css-tree": "^2.3.11",
"css-tree": "^3.1.0",
"husky": "^9.1"
},
"peerDependencies": {
"typescript": "^5"
},
"publishConfig": {
"access": "public"
}
}