-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.67 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.67 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
{
"name": "@massimo-cassandro/minimo",
"version": "0.10.11",
"description": "Light css framework & utilities",
"type": "module",
"homepage": "https://github.com/massimo-cassandro/minimo#readme",
"bugs": {
"url": "https://github.com/massimo-cassandro/minimo/issues"
},
"bin": {
"buildTokens": "./design-tokens-utilities/build-tokens.mjs",
"checkUnresolvedProps": "./design-tokens-utilities/check-unresolved-custom-props.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimo-cassandro/minimo.git"
},
"scripts": {
"UPD-version": "npx update-version # --config=./dev-utilities.config.mjs",
"upd@m": "npx upd@m",
"npm-publish": "npm publish",
"webpack DEMO": "NODE_ENV=development webpack serve --config ./demo-src/webpack.config.mjs",
"webpack DEMO build": "NODE_ENV=production webpack --config ./demo-src/webpack.config.mjs",
"build-tokens": "node ./design-tokens-utilities/build-tokens.mjs --config ./tokens-config.mjs",
"check unresolved props": "node ./design-tokens-utilities/check-unresolved-custom-props.mjs --config ./tokens-config.mjs"
},
"license": "MIT",
"author": "Massimo Cassandro",
"publishConfig": {
"access": "public"
},
"main": "./index.js",
"sideEffects": [
"*.css",
"*.js",
"*.svg",
"*.jpg",
"*.jpeg",
"*.png",
"*.webp",
"*.avif"
],
"files": [
"./index.js",
"src/**/*.{js,mjs,css,svg,md}",
"design-tokens/**/*.{tokens.json,tokens.jsonc}",
"design-tokens-src/**/*.{tokens.json,tokens.jsonc,mjs,js,md}",
"design-tokens-utilities/**/*.{mjs,md}"
],
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@csstools/postcss-global-data": "^4.0.0",
"@massimo-cassandro/dev-updater": "^3.0.3",
"@massimo-cassandro/eslint-config": "^3.0.6",
"@massimo-cassandro/stylelint-config": "^2.3.4",
"autoprefixer": "^10.5.0",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"cssnano": "^7.1.5",
"ejs-loader": "^0.5.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.7",
"mini-css-extract-plugin": "^2.10.2",
"mini-svg-data-uri": "^1.4.4",
"postcss": "^8.5.10",
"postcss-custom-media": "^12.0.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^11.2.1",
"process": "^0.11.10",
"style-dictionary": "^5.4.0",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"svgo": "^4.0.1",
"svgo-add-viewbox": "^3.1.0",
"svgo-loader": "^5.0.0",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
}
}