-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "mason-js",
"version": "2.0.0",
"description": "A simple horizontal masonry layout that works with dynamically sized items",
"main": "cjs/index.js",
"module": "index.js",
"scripts": {
"build": "npm run build-module && npm run build-cjs && cp ./package.json ./lib && cp ./source/mason.scss ./lib && cp ./README.md ./lib",
"build-cjs": "./node_modules/typescript/bin/tsc --rootDir ./source --outDir ./lib/cjs -m commonjs",
"build-module": "./node_modules/typescript/bin/tsc",
"demo": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcgraphix/mason.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcgraphix/mason/issues"
},
"homepage": "https://github.com/mcgraphix/mason#readme",
"devDependencies": {
"@types/node": "^20.4.6",
"glob-parent": ">=5.1.2",
"typescript": "^5.0.0",
"webpack": "^5.76.1",
"webpack-cli": "^4.7.2"
},
"optionalDependencies": {
"css-element-queries": "^1.2.3"
}
}