-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.41 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
{
"name": "@toolcase/web-components",
"version": "5.0.9",
"description": "Framework-free HTML5 Web Components (tc-*) with their own from-scratch toolcase styling and a Bootstrap-compatible class/grid API — drop into any stack without React, Vue, or Angular.",
"main": "lib/index.main.js",
"module": "lib/index.module.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"node": "./lib/index.server.main.js",
"import": "./lib/index.module.js",
"require": "./lib/index.main.js"
},
"./react": {
"types": "./lib/react.d.ts",
"import": "./lib/react.module.js",
"require": "./lib/react.main.js"
},
"./style.css": "./lib/index.css"
},
"sideEffects": [
"*.css",
"lib/index.main.js",
"lib/index.module.js"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && sass style/index.scss:lib/index.css --no-source-map --no-charset --style=compressed",
"build:css": "sass style/index.scss:lib/index.css --no-source-map --no-charset --style=compressed",
"gen:react-types": "node scripts/gen-react-types.mjs"
},
"peerDependencies": {
"@toolcase/base": "5.x.x",
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"react": "^19.1.0",
"@types/react": "^19.1.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"lucide-static": "^1.18.0"
},
"author": {
"name": "Daniel Kalevski",
"url": "https://kalevski.dev"
},
"homepage": "https://toolcase.kalevski.dev",
"keywords": [
"toolcase",
"bootstrap-compatible",
"web-components",
"custom-elements",
"html5",
"framework-free",
"typescript"
],
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalevski/toolcase.git",
"directory": "web-components"
},
"bugs": {
"url": "https://github.com/kalevski/toolcase/issues"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}