-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 939 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 939 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
40
41
42
43
44
45
46
{
"name": "gridpack",
"version": "0.3.2",
"type": "module",
"description": "CSS layouts in one string.",
"author": "theKey",
"license": "MIT",
"keywords": [
"css",
"grid",
"layout",
"react"
],
"scripts": {
"build": "node build.mjs && tsc --declaration --emitDeclarationOnly --allowJs --jsx react --moduleResolution node --outDir dist src/index.js",
"watch": "node build.mjs --watch"
},
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": ">=17"
},
"peerDependenciesMeta": {
"react": { "optional": false }
},
"devDependencies": {
"esbuild": "^0.28.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.3"
}
}