-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "gravity-icons-solid",
"version": "0.1.0",
"description": "Gravity UI icons as SolidJS components",
"license": "MIT",
"type": "module",
"keywords": [
"solid",
"solidjs",
"gravity-ui",
"icons",
"svg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daveycodez/gravity-icons-solid.git"
},
"files": [
"dist",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"solid": "./dist/index.jsx",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"generate": "bun scripts/generate.ts",
"build": "rm -rf dist && bun run generate && vite build && tsc -p tsconfig.build.json",
"test": "bun run generate && vitest run",
"typecheck": "bun run generate && tsc --noEmit",
"check:publish": "publint && attw --pack . --profile esm-only --ignore-rules internal-resolution-error --entrypoints .",
"prepublishOnly": "bun run build",
"lint": "biome check .",
"format": "biome format --write ."
},
"peerDependencies": {
"solid-js": "^1.9.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "2.5.4",
"@gravity-ui/icons": "2.20.0",
"@solidjs/testing-library": "^0.8.10",
"jsdom": "^29.1.1",
"publint": "^0.3.21",
"solid-js": "^1.9.14",
"typescript": "~7.0.2",
"vite": "^8.1.5",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.10"
}
}