-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 KB
/
package.json
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
{
"name": "brique",
"version": "1.0.13",
"description": "Create cascading layout grids like Pinterest with the power of CSS Grid Layout.",
"keywords": [
"grid",
"layout",
"masonry",
"pinterest",
"CSS Grid Layout",
"brick"
],
"homepage": "https://raphpare.github.io/brique",
"bug": {
"url": "https://github.com/raphpare/brique/issues"
},
"license": "ISC",
"author": "Raphaël Paré <[email protected]> (https://github.com/raphpare)",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/raphpare/brique.git"
},
"scripts": {
"build": "rimraf lib && node esbuild.config.js && tsc && npm run typedoc",
"watch": "rimraf lib && node esbuild.config.js --watch",
"typedoc": "rimraf docs && typedoc --out docs ./src",
"clean": "rimraf node_modules && rimraf lib && rimraf docs"
},
"devDependencies": {
"esbuild": "^0.14.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
}
}