-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "bare-mod",
"version": "0.0.8",
"description": "An ultra-lightweight, 2026-ready CSS foundation with fluid typography.",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"css",
"typography",
"grid"
],
"homepage": "https://github.com/cmbaughman/bare-mod#readme",
"bugs": {
"url": "https://github.com/cmbaughman/bare-mod/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmbaughman/bare-mod.git"
},
"license": "Apache-2.0",
"author": "Chris Baughman",
"type": "module",
"main": "./dist/fonts.min.js",
"module": "./dist/fonts.min.js",
"exports": {
".": "./dist/fonts.min.js",
"./theme": "./dist/theme.min.js",
"./style": "./dist/bare.min.css"
},
"browser": "./dist/fonts.min.js",
"scripts": {
"start": "vite",
"build": "node scripts/build.js",
"test": "node --test tests/*.test.js",
"prepublishOnly": "npm run build && npm test",
"release": "npm run build && npm test && git add . && npm version patch && git push origin main --tags "
},
"devDependencies": {
"esbuild": "^0.27.3",
"lightningcss": "^1.31.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"vite": "^7.3.1"
}
}