-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.2 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "dragonglass",
"version": "2.0.1",
"description": "HTML5-first and pure CSS framework for fast UI building",
"main": "dist/dragonglass.css",
"style": "dist/dragonglass.css",
"exports": {
".": "./dist/dragonglass.css",
"./dist/*": "./dist/*",
"./theme": {
"sass": "./theme.scss",
"default": "./theme.scss"
},
"./package.json": "./package.json"
},
"repository": "[email protected]:Masquerade-Circus/dragonglass.git",
"author": "Masquerade <[email protected]>",
"license": "Apache-2.0",
"private": false,
"files": [
"dist",
"scss",
"theme.scss"
],
"keywords": [
"Dragonglass",
"css",
"sass",
"mobile-first",
"responsive",
"html5",
"framework",
"ui",
"user-interfaces",
"pwa",
"progressive web app",
"html5-first"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:server": "NODE_ENV=development bun --watch index.ts",
"dev:sass": "bun --watch build.ts",
"dev": "bun run dev:server & bun run dev:sass",
"start": "bun run build && bun index.ts",
"build": "bun build.ts",
"commit": "git add . && git-cz",
"release": "release-it --verbose",
"release-test": "release-it --dry-run --verbose"
},
"dependencies": {},
"overrides": {
"minimist": "^1.2.8"
},
"devDependencies": {
"@release-it/conventional-changelog": "^11.0.1",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.6.0",
"fs-extra": "^11.3.6",
"modern-css-reset": "^1.4.0",
"prettier": "^3.9.5",
"release-it": "^20.2.1",
"sass": "^1.101.0",
"valyrian.js": "^9.1.13"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "conventionalcommits"
}
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"after:bump": [
"bun run build"
]
}
}
}